diff options
author | Ulf Lamping <ulf.lamping@web.de> | 2007-09-09 13:59:58 +0000 |
---|---|---|
committer | Ulf Lamping <ulf.lamping@web.de> | 2007-09-09 13:59:58 +0000 |
commit | 1366745e4520145316e4083d2c5bc1b53878d922 (patch) | |
tree | d84744ed856986d83a401fe6354de34677b01a4c /tshark.vcproj | |
parent | 82823c4e1ef6987f239b8e3b039412bde9eaceeb (diff) | |
download | wireshark-1366745e4520145316e4083d2c5bc1b53878d922.tar.gz wireshark-1366745e4520145316e4083d2c5bc1b53878d922.tar.bz2 wireshark-1366745e4520145316e4083d2c5bc1b53878d922.zip |
start an experiment to provide MS Visual Studio 2005 solution / project files for a lot easier debugging. They still use the underlying Makefile.nmake files for the actual build process.
svn path=/trunk/; revision=22831
Diffstat (limited to 'tshark.vcproj')
-rw-r--r-- | tshark.vcproj | 94 |
1 files changed, 94 insertions, 0 deletions
diff --git a/tshark.vcproj b/tshark.vcproj new file mode 100644 index 0000000000..4f0dc8ac44 --- /dev/null +++ b/tshark.vcproj @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="Windows-1252"?>
+<VisualStudioProject
+ ProjectType="Visual C++"
+ Version="8,00"
+ Name="tshark"
+ ProjectGUID="{96D3AB33-BFA5-4161-B936-8C40D62A44F8}"
+ Keyword="MakeFileProj"
+ >
+ <Platforms>
+ <Platform
+ Name="Win32"
+ />
+ </Platforms>
+ <ToolFiles>
+ </ToolFiles>
+ <Configurations>
+ <Configuration
+ Name="Debug|Win32"
+ OutputDirectory="$(ConfigurationName)"
+ IntermediateDirectory="$(ConfigurationName)"
+ ConfigurationType="0"
+ >
+ <Tool
+ Name="VCNMakeTool"
+ BuildCommandLine="nmake -f Makefile.nmake debug-tshark"
+ ReBuildCommandLine=""
+ CleanCommandLine=""
+ Output="wireshark-gtk2\tshark.exe"
+ PreprocessorDefinitions="WIN32;_DEBUG;HAVE_CONFIG_H"
+ IncludeSearchPath=""
+ ForcedIncludes=""
+ AssemblySearchPath=""
+ ForcedUsingAssemblies=""
+ CompileAsManaged=""
+ />
+ </Configuration>
+ <Configuration
+ Name="Release|Win32"
+ OutputDirectory="$(ConfigurationName)"
+ IntermediateDirectory="$(ConfigurationName)"
+ ConfigurationType="0"
+ >
+ <Tool
+ Name="VCNMakeTool"
+ BuildCommandLine=""
+ ReBuildCommandLine=""
+ CleanCommandLine=""
+ Output="tshark.exe"
+ PreprocessorDefinitions="WIN32;NDEBUG"
+ IncludeSearchPath=""
+ ForcedIncludes=""
+ AssemblySearchPath=""
+ ForcedUsingAssemblies=""
+ CompileAsManaged=""
+ />
+ </Configuration>
+ </Configurations>
+ <References>
+ </References>
+ <Files>
+ <Filter
+ Name="Quelldateien"
+ Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
+ UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
+ >
+ <File
+ RelativePath=".\capture_sync.c"
+ >
+ </File>
+ <File
+ RelativePath=".\tshark.c"
+ >
+ </File>
+ </Filter>
+ <Filter
+ Name="Headerdateien"
+ Filter="h;hpp;hxx;hm;inl;inc;xsd"
+ UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"
+ >
+ <File
+ RelativePath=".\capture_sync.h"
+ >
+ </File>
+ </Filter>
+ <Filter
+ Name="Ressourcendateien"
+ Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav"
+ UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
+ >
+ </Filter>
+ </Files>
+ <Globals>
+ </Globals>
+</VisualStudioProject>
|