Use arch suffix consistently in all directories names
For some reason, we used "vc_x64_lib" as the output directory for the libraries, but "vc_mswu_x64" as the output directory for the samples. Place the arch suffix, i.e. "_x64" part, always after the compiler prefix (possibly including version), for consistency with both the library output directories and with MSBuild project files, as build/msw/wx_setup.props uses $(wxCompilerPrefix)$(wxArchSuffix)_... as wxIntRootDir value.
This commit is contained in:
parent
91ae4e2f8a
commit
5216d97f08
417 changed files with 7779 additions and 7779 deletions
|
|
@ -388,8 +388,8 @@
|
|||
</Configuration>
|
||||
<Configuration
|
||||
Name="Debug|x64"
|
||||
OutputDirectory="vc_mswud_x64"
|
||||
IntermediateDirectory="vc_mswud_x64\my_dll"
|
||||
OutputDirectory="vc_x64_mswud"
|
||||
IntermediateDirectory="vc_x64_mswud\my_dll"
|
||||
ConfigurationType="2"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="false"
|
||||
|
|
@ -423,8 +423,8 @@
|
|||
RuntimeLibrary="3"
|
||||
BufferSecurityCheck="true"
|
||||
RuntimeTypeInfo="true"
|
||||
ObjectFile="vc_mswud_x64\my_dll\"
|
||||
ProgramDataBaseFileName="vc_mswud_x64\my_dll.pdb"
|
||||
ObjectFile="vc_x64_mswud\my_dll\"
|
||||
ProgramDataBaseFileName="vc_x64_mswud\my_dll.pdb"
|
||||
WarningLevel="4"
|
||||
SuppressStartupBanner="true"
|
||||
Detect64BitPortabilityProblems="true"
|
||||
|
|
@ -446,14 +446,14 @@
|
|||
Name="VCLinkerTool"
|
||||
AdditionalOptions=""
|
||||
AdditionalDependencies="wxmsw31ud_core.lib wxbase31ud.lib wxtiffd.lib wxjpegd.lib wxpngd.lib wxzlibd.lib wxregexud.lib wxexpatd.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib shlwapi.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib version.lib ws2_32.lib wininet.lib"
|
||||
OutputFile="vc_mswud_x64\my_dll.dll"
|
||||
OutputFile="vc_x64_mswud\my_dll.dll"
|
||||
LinkIncremental="2"
|
||||
ImportLibrary="vc_mswud_x64\my_dll.lib"
|
||||
ImportLibrary="vc_x64_mswud\my_dll.lib"
|
||||
SuppressStartupBanner="true"
|
||||
AdditionalLibraryDirectories=".\..\..\lib\vc_x64_lib"
|
||||
GenerateManifest="true"
|
||||
GenerateDebugInformation="true"
|
||||
ProgramDatabaseFile="vc_mswud_x64\my_dll.pdb"
|
||||
ProgramDatabaseFile="vc_x64_mswud\my_dll.pdb"
|
||||
TargetMachine="17"
|
||||
/>
|
||||
<Tool
|
||||
|
|
@ -467,7 +467,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCBscMakeTool"
|
||||
OutputFile="vc_mswud_x64\dll_vc8_my_dll.bsc"
|
||||
OutputFile="vc_x64_mswud\dll_vc8_my_dll.bsc"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
|
@ -479,8 +479,8 @@
|
|||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|x64"
|
||||
OutputDirectory="vc_mswu_x64"
|
||||
IntermediateDirectory="vc_mswu_x64\my_dll"
|
||||
OutputDirectory="vc_x64_mswu"
|
||||
IntermediateDirectory="vc_x64_mswu\my_dll"
|
||||
ConfigurationType="2"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="false"
|
||||
|
|
@ -511,8 +511,8 @@
|
|||
ExceptionHandling="1"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="true"
|
||||
ObjectFile="vc_mswu_x64\my_dll\"
|
||||
ProgramDataBaseFileName="vc_mswu_x64\my_dll.pdb"
|
||||
ObjectFile="vc_x64_mswu\my_dll\"
|
||||
ProgramDataBaseFileName="vc_x64_mswu\my_dll.pdb"
|
||||
WarningLevel="4"
|
||||
SuppressStartupBanner="true"
|
||||
Detect64BitPortabilityProblems="true"
|
||||
|
|
@ -534,14 +534,14 @@
|
|||
Name="VCLinkerTool"
|
||||
AdditionalOptions=""
|
||||
AdditionalDependencies="wxmsw31u_core.lib wxbase31u.lib wxtiff.lib wxjpeg.lib wxpng.lib wxzlib.lib wxregexu.lib wxexpat.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib shlwapi.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib version.lib ws2_32.lib wininet.lib"
|
||||
OutputFile="vc_mswu_x64\my_dll.dll"
|
||||
OutputFile="vc_x64_mswu\my_dll.dll"
|
||||
LinkIncremental="1"
|
||||
ImportLibrary="vc_mswu_x64\my_dll.lib"
|
||||
ImportLibrary="vc_x64_mswu\my_dll.lib"
|
||||
SuppressStartupBanner="true"
|
||||
AdditionalLibraryDirectories=".\..\..\lib\vc_x64_lib"
|
||||
GenerateManifest="true"
|
||||
GenerateDebugInformation="true"
|
||||
ProgramDatabaseFile="vc_mswu_x64\my_dll.pdb"
|
||||
ProgramDatabaseFile="vc_x64_mswu\my_dll.pdb"
|
||||
TargetMachine="17"
|
||||
OptimizeReferences="2"
|
||||
EnableCOMDATFolding="2"
|
||||
|
|
@ -557,7 +557,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCBscMakeTool"
|
||||
OutputFile="vc_mswu_x64\dll_vc8_my_dll.bsc"
|
||||
OutputFile="vc_x64_mswu\dll_vc8_my_dll.bsc"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
|
@ -569,8 +569,8 @@
|
|||
</Configuration>
|
||||
<Configuration
|
||||
Name="DLL Debug|x64"
|
||||
OutputDirectory="vc_mswuddll_x64"
|
||||
IntermediateDirectory="vc_mswuddll_x64\my_dll"
|
||||
OutputDirectory="vc_x64_mswuddll"
|
||||
IntermediateDirectory="vc_x64_mswuddll\my_dll"
|
||||
ConfigurationType="2"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="false"
|
||||
|
|
@ -604,8 +604,8 @@
|
|||
RuntimeLibrary="3"
|
||||
BufferSecurityCheck="true"
|
||||
RuntimeTypeInfo="true"
|
||||
ObjectFile="vc_mswuddll_x64\my_dll\"
|
||||
ProgramDataBaseFileName="vc_mswuddll_x64\my_dll.pdb"
|
||||
ObjectFile="vc_x64_mswuddll\my_dll\"
|
||||
ProgramDataBaseFileName="vc_x64_mswuddll\my_dll.pdb"
|
||||
WarningLevel="4"
|
||||
SuppressStartupBanner="true"
|
||||
Detect64BitPortabilityProblems="true"
|
||||
|
|
@ -627,14 +627,14 @@
|
|||
Name="VCLinkerTool"
|
||||
AdditionalOptions=""
|
||||
AdditionalDependencies="wxmsw31ud_core.lib wxbase31ud.lib wxtiffd.lib wxjpegd.lib wxpngd.lib wxzlibd.lib wxregexud.lib wxexpatd.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib shlwapi.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib version.lib ws2_32.lib wininet.lib"
|
||||
OutputFile="vc_mswuddll_x64\my_dll.dll"
|
||||
OutputFile="vc_x64_mswuddll\my_dll.dll"
|
||||
LinkIncremental="2"
|
||||
ImportLibrary="vc_mswuddll_x64\my_dll.lib"
|
||||
ImportLibrary="vc_x64_mswuddll\my_dll.lib"
|
||||
SuppressStartupBanner="true"
|
||||
AdditionalLibraryDirectories=".\..\..\lib\vc_x64_dll"
|
||||
GenerateManifest="true"
|
||||
GenerateDebugInformation="true"
|
||||
ProgramDatabaseFile="vc_mswuddll_x64\my_dll.pdb"
|
||||
ProgramDatabaseFile="vc_x64_mswuddll\my_dll.pdb"
|
||||
TargetMachine="17"
|
||||
/>
|
||||
<Tool
|
||||
|
|
@ -648,7 +648,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCBscMakeTool"
|
||||
OutputFile="vc_mswuddll_x64\dll_vc8_my_dll.bsc"
|
||||
OutputFile="vc_x64_mswuddll\dll_vc8_my_dll.bsc"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
|
@ -660,8 +660,8 @@
|
|||
</Configuration>
|
||||
<Configuration
|
||||
Name="DLL Release|x64"
|
||||
OutputDirectory="vc_mswudll_x64"
|
||||
IntermediateDirectory="vc_mswudll_x64\my_dll"
|
||||
OutputDirectory="vc_x64_mswudll"
|
||||
IntermediateDirectory="vc_x64_mswudll\my_dll"
|
||||
ConfigurationType="2"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="false"
|
||||
|
|
@ -692,8 +692,8 @@
|
|||
ExceptionHandling="1"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="true"
|
||||
ObjectFile="vc_mswudll_x64\my_dll\"
|
||||
ProgramDataBaseFileName="vc_mswudll_x64\my_dll.pdb"
|
||||
ObjectFile="vc_x64_mswudll\my_dll\"
|
||||
ProgramDataBaseFileName="vc_x64_mswudll\my_dll.pdb"
|
||||
WarningLevel="4"
|
||||
SuppressStartupBanner="true"
|
||||
Detect64BitPortabilityProblems="true"
|
||||
|
|
@ -715,14 +715,14 @@
|
|||
Name="VCLinkerTool"
|
||||
AdditionalOptions=""
|
||||
AdditionalDependencies="wxmsw31u_core.lib wxbase31u.lib wxtiff.lib wxjpeg.lib wxpng.lib wxzlib.lib wxregexu.lib wxexpat.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib shlwapi.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib version.lib ws2_32.lib wininet.lib"
|
||||
OutputFile="vc_mswudll_x64\my_dll.dll"
|
||||
OutputFile="vc_x64_mswudll\my_dll.dll"
|
||||
LinkIncremental="1"
|
||||
ImportLibrary="vc_mswudll_x64\my_dll.lib"
|
||||
ImportLibrary="vc_x64_mswudll\my_dll.lib"
|
||||
SuppressStartupBanner="true"
|
||||
AdditionalLibraryDirectories=".\..\..\lib\vc_x64_dll"
|
||||
GenerateManifest="true"
|
||||
GenerateDebugInformation="true"
|
||||
ProgramDatabaseFile="vc_mswudll_x64\my_dll.pdb"
|
||||
ProgramDatabaseFile="vc_x64_mswudll\my_dll.pdb"
|
||||
TargetMachine="17"
|
||||
OptimizeReferences="2"
|
||||
EnableCOMDATFolding="2"
|
||||
|
|
@ -738,7 +738,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCBscMakeTool"
|
||||
OutputFile="vc_mswudll_x64\dll_vc8_my_dll.bsc"
|
||||
OutputFile="vc_x64_mswudll\dll_vc8_my_dll.bsc"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
|
|
|||
|
|
@ -408,8 +408,8 @@
|
|||
</Configuration>
|
||||
<Configuration
|
||||
Name="Debug|x64"
|
||||
OutputDirectory="vc_mswud_x64"
|
||||
IntermediateDirectory="vc_mswud_x64\sdk_exe"
|
||||
OutputDirectory="vc_x64_mswud"
|
||||
IntermediateDirectory="vc_x64_mswud\sdk_exe"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="false"
|
||||
|
|
@ -442,8 +442,8 @@
|
|||
RuntimeLibrary="3"
|
||||
BufferSecurityCheck="true"
|
||||
RuntimeTypeInfo="true"
|
||||
ObjectFile="vc_mswud_x64\sdk_exe\"
|
||||
ProgramDataBaseFileName="vc_mswud_x64\sdk_exe.pdb"
|
||||
ObjectFile="vc_x64_mswud\sdk_exe\"
|
||||
ProgramDataBaseFileName="vc_x64_mswud\sdk_exe.pdb"
|
||||
WarningLevel="3"
|
||||
SuppressStartupBanner="true"
|
||||
Detect64BitPortabilityProblems="true"
|
||||
|
|
@ -464,14 +464,14 @@
|
|||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
AdditionalOptions=""
|
||||
AdditionalDependencies="vc_mswud_x64\my_dll.lib user32.lib"
|
||||
OutputFile="vc_mswud_x64\sdk_exe.exe"
|
||||
AdditionalDependencies="vc_x64_mswud\my_dll.lib user32.lib"
|
||||
OutputFile="vc_x64_mswud\sdk_exe.exe"
|
||||
LinkIncremental="2"
|
||||
SuppressStartupBanner="true"
|
||||
AdditionalLibraryDirectories=""
|
||||
GenerateManifest="true"
|
||||
GenerateDebugInformation="true"
|
||||
ProgramDatabaseFile="vc_mswud_x64\sdk_exe.pdb"
|
||||
ProgramDatabaseFile="vc_x64_mswud\sdk_exe.pdb"
|
||||
SubSystem="2"
|
||||
TargetMachine="17"
|
||||
/>
|
||||
|
|
@ -486,7 +486,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCBscMakeTool"
|
||||
OutputFile="vc_mswud_x64\dll_vc8_sdk_exe.bsc"
|
||||
OutputFile="vc_x64_mswud\dll_vc8_sdk_exe.bsc"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
|
@ -504,8 +504,8 @@
|
|||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|x64"
|
||||
OutputDirectory="vc_mswu_x64"
|
||||
IntermediateDirectory="vc_mswu_x64\sdk_exe"
|
||||
OutputDirectory="vc_x64_mswu"
|
||||
IntermediateDirectory="vc_x64_mswu\sdk_exe"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="false"
|
||||
|
|
@ -535,8 +535,8 @@
|
|||
ExceptionHandling="1"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="true"
|
||||
ObjectFile="vc_mswu_x64\sdk_exe\"
|
||||
ProgramDataBaseFileName="vc_mswu_x64\sdk_exe.pdb"
|
||||
ObjectFile="vc_x64_mswu\sdk_exe\"
|
||||
ProgramDataBaseFileName="vc_x64_mswu\sdk_exe.pdb"
|
||||
WarningLevel="3"
|
||||
SuppressStartupBanner="true"
|
||||
Detect64BitPortabilityProblems="true"
|
||||
|
|
@ -557,14 +557,14 @@
|
|||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
AdditionalOptions=""
|
||||
AdditionalDependencies="vc_mswu_x64\my_dll.lib user32.lib"
|
||||
OutputFile="vc_mswu_x64\sdk_exe.exe"
|
||||
AdditionalDependencies="vc_x64_mswu\my_dll.lib user32.lib"
|
||||
OutputFile="vc_x64_mswu\sdk_exe.exe"
|
||||
LinkIncremental="1"
|
||||
SuppressStartupBanner="true"
|
||||
AdditionalLibraryDirectories=""
|
||||
GenerateManifest="true"
|
||||
GenerateDebugInformation="true"
|
||||
ProgramDatabaseFile="vc_mswu_x64\sdk_exe.pdb"
|
||||
ProgramDatabaseFile="vc_x64_mswu\sdk_exe.pdb"
|
||||
SubSystem="2"
|
||||
TargetMachine="17"
|
||||
OptimizeReferences="2"
|
||||
|
|
@ -581,7 +581,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCBscMakeTool"
|
||||
OutputFile="vc_mswu_x64\dll_vc8_sdk_exe.bsc"
|
||||
OutputFile="vc_x64_mswu\dll_vc8_sdk_exe.bsc"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
|
@ -599,8 +599,8 @@
|
|||
</Configuration>
|
||||
<Configuration
|
||||
Name="DLL Debug|x64"
|
||||
OutputDirectory="vc_mswuddll_x64"
|
||||
IntermediateDirectory="vc_mswuddll_x64\sdk_exe"
|
||||
OutputDirectory="vc_x64_mswuddll"
|
||||
IntermediateDirectory="vc_x64_mswuddll\sdk_exe"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="false"
|
||||
|
|
@ -633,8 +633,8 @@
|
|||
RuntimeLibrary="3"
|
||||
BufferSecurityCheck="true"
|
||||
RuntimeTypeInfo="true"
|
||||
ObjectFile="vc_mswuddll_x64\sdk_exe\"
|
||||
ProgramDataBaseFileName="vc_mswuddll_x64\sdk_exe.pdb"
|
||||
ObjectFile="vc_x64_mswuddll\sdk_exe\"
|
||||
ProgramDataBaseFileName="vc_x64_mswuddll\sdk_exe.pdb"
|
||||
WarningLevel="3"
|
||||
SuppressStartupBanner="true"
|
||||
Detect64BitPortabilityProblems="true"
|
||||
|
|
@ -655,14 +655,14 @@
|
|||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
AdditionalOptions=""
|
||||
AdditionalDependencies="vc_mswuddll_x64\my_dll.lib user32.lib"
|
||||
OutputFile="vc_mswuddll_x64\sdk_exe.exe"
|
||||
AdditionalDependencies="vc_x64_mswuddll\my_dll.lib user32.lib"
|
||||
OutputFile="vc_x64_mswuddll\sdk_exe.exe"
|
||||
LinkIncremental="2"
|
||||
SuppressStartupBanner="true"
|
||||
AdditionalLibraryDirectories=""
|
||||
GenerateManifest="true"
|
||||
GenerateDebugInformation="true"
|
||||
ProgramDatabaseFile="vc_mswuddll_x64\sdk_exe.pdb"
|
||||
ProgramDatabaseFile="vc_x64_mswuddll\sdk_exe.pdb"
|
||||
SubSystem="2"
|
||||
TargetMachine="17"
|
||||
/>
|
||||
|
|
@ -677,7 +677,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCBscMakeTool"
|
||||
OutputFile="vc_mswuddll_x64\dll_vc8_sdk_exe.bsc"
|
||||
OutputFile="vc_x64_mswuddll\dll_vc8_sdk_exe.bsc"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
|
@ -695,8 +695,8 @@
|
|||
</Configuration>
|
||||
<Configuration
|
||||
Name="DLL Release|x64"
|
||||
OutputDirectory="vc_mswudll_x64"
|
||||
IntermediateDirectory="vc_mswudll_x64\sdk_exe"
|
||||
OutputDirectory="vc_x64_mswudll"
|
||||
IntermediateDirectory="vc_x64_mswudll\sdk_exe"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="false"
|
||||
|
|
@ -726,8 +726,8 @@
|
|||
ExceptionHandling="1"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="true"
|
||||
ObjectFile="vc_mswudll_x64\sdk_exe\"
|
||||
ProgramDataBaseFileName="vc_mswudll_x64\sdk_exe.pdb"
|
||||
ObjectFile="vc_x64_mswudll\sdk_exe\"
|
||||
ProgramDataBaseFileName="vc_x64_mswudll\sdk_exe.pdb"
|
||||
WarningLevel="3"
|
||||
SuppressStartupBanner="true"
|
||||
Detect64BitPortabilityProblems="true"
|
||||
|
|
@ -748,14 +748,14 @@
|
|||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
AdditionalOptions=""
|
||||
AdditionalDependencies="vc_mswudll_x64\my_dll.lib user32.lib"
|
||||
OutputFile="vc_mswudll_x64\sdk_exe.exe"
|
||||
AdditionalDependencies="vc_x64_mswudll\my_dll.lib user32.lib"
|
||||
OutputFile="vc_x64_mswudll\sdk_exe.exe"
|
||||
LinkIncremental="1"
|
||||
SuppressStartupBanner="true"
|
||||
AdditionalLibraryDirectories=""
|
||||
GenerateManifest="true"
|
||||
GenerateDebugInformation="true"
|
||||
ProgramDatabaseFile="vc_mswudll_x64\sdk_exe.pdb"
|
||||
ProgramDatabaseFile="vc_x64_mswudll\sdk_exe.pdb"
|
||||
SubSystem="2"
|
||||
TargetMachine="17"
|
||||
OptimizeReferences="2"
|
||||
|
|
@ -772,7 +772,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCBscMakeTool"
|
||||
OutputFile="vc_mswudll_x64\dll_vc8_sdk_exe.bsc"
|
||||
OutputFile="vc_x64_mswudll\dll_vc8_sdk_exe.bsc"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
|
|
|||
|
|
@ -219,8 +219,8 @@
|
|||
</Configuration>
|
||||
<Configuration
|
||||
Name="Debug|x64"
|
||||
OutputDirectory="vc_mswud_x64"
|
||||
IntermediateDirectory="vc_mswud_x64\wx_exe"
|
||||
OutputDirectory="vc_x64_mswud"
|
||||
IntermediateDirectory="vc_x64_mswud\wx_exe"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="false"
|
||||
|
|
@ -254,8 +254,8 @@
|
|||
RuntimeLibrary="3"
|
||||
BufferSecurityCheck="true"
|
||||
RuntimeTypeInfo="true"
|
||||
ObjectFile="vc_mswud_x64\wx_exe\"
|
||||
ProgramDataBaseFileName="vc_mswud_x64\wx_exe.pdb"
|
||||
ObjectFile="vc_x64_mswud\wx_exe\"
|
||||
ProgramDataBaseFileName="vc_x64_mswud\wx_exe.pdb"
|
||||
WarningLevel="4"
|
||||
SuppressStartupBanner="true"
|
||||
Detect64BitPortabilityProblems="true"
|
||||
|
|
@ -276,14 +276,14 @@
|
|||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
AdditionalOptions=""
|
||||
AdditionalDependencies="wxmsw31ud_core.lib wxbase31ud.lib vc_mswud_x64\my_dll.lib wxtiffd.lib wxjpegd.lib wxpngd.lib wxzlibd.lib wxregexud.lib wxexpatd.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib shlwapi.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib version.lib ws2_32.lib wininet.lib"
|
||||
OutputFile="vc_mswud_x64\wx_exe.exe"
|
||||
AdditionalDependencies="wxmsw31ud_core.lib wxbase31ud.lib vc_x64_mswud\my_dll.lib wxtiffd.lib wxjpegd.lib wxpngd.lib wxzlibd.lib wxregexud.lib wxexpatd.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib shlwapi.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib version.lib ws2_32.lib wininet.lib"
|
||||
OutputFile="vc_x64_mswud\wx_exe.exe"
|
||||
LinkIncremental="2"
|
||||
SuppressStartupBanner="true"
|
||||
AdditionalLibraryDirectories=".\..\..\lib\vc_x64_lib"
|
||||
GenerateManifest="true"
|
||||
GenerateDebugInformation="true"
|
||||
ProgramDatabaseFile="vc_mswud_x64\wx_exe.pdb"
|
||||
ProgramDatabaseFile="vc_x64_mswud\wx_exe.pdb"
|
||||
SubSystem="2"
|
||||
TargetMachine="17"
|
||||
/>
|
||||
|
|
@ -298,7 +298,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCBscMakeTool"
|
||||
OutputFile="vc_mswud_x64\dll_vc8_wx_exe.bsc"
|
||||
OutputFile="vc_x64_mswud\dll_vc8_wx_exe.bsc"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
|
@ -316,8 +316,8 @@
|
|||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|x64"
|
||||
OutputDirectory="vc_mswu_x64"
|
||||
IntermediateDirectory="vc_mswu_x64\wx_exe"
|
||||
OutputDirectory="vc_x64_mswu"
|
||||
IntermediateDirectory="vc_x64_mswu\wx_exe"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="false"
|
||||
|
|
@ -348,8 +348,8 @@
|
|||
ExceptionHandling="1"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="true"
|
||||
ObjectFile="vc_mswu_x64\wx_exe\"
|
||||
ProgramDataBaseFileName="vc_mswu_x64\wx_exe.pdb"
|
||||
ObjectFile="vc_x64_mswu\wx_exe\"
|
||||
ProgramDataBaseFileName="vc_x64_mswu\wx_exe.pdb"
|
||||
WarningLevel="4"
|
||||
SuppressStartupBanner="true"
|
||||
Detect64BitPortabilityProblems="true"
|
||||
|
|
@ -370,14 +370,14 @@
|
|||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
AdditionalOptions=""
|
||||
AdditionalDependencies="wxmsw31u_core.lib wxbase31u.lib vc_mswu_x64\my_dll.lib wxtiff.lib wxjpeg.lib wxpng.lib wxzlib.lib wxregexu.lib wxexpat.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib shlwapi.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib version.lib ws2_32.lib wininet.lib"
|
||||
OutputFile="vc_mswu_x64\wx_exe.exe"
|
||||
AdditionalDependencies="wxmsw31u_core.lib wxbase31u.lib vc_x64_mswu\my_dll.lib wxtiff.lib wxjpeg.lib wxpng.lib wxzlib.lib wxregexu.lib wxexpat.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib shlwapi.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib version.lib ws2_32.lib wininet.lib"
|
||||
OutputFile="vc_x64_mswu\wx_exe.exe"
|
||||
LinkIncremental="1"
|
||||
SuppressStartupBanner="true"
|
||||
AdditionalLibraryDirectories=".\..\..\lib\vc_x64_lib"
|
||||
GenerateManifest="true"
|
||||
GenerateDebugInformation="true"
|
||||
ProgramDatabaseFile="vc_mswu_x64\wx_exe.pdb"
|
||||
ProgramDatabaseFile="vc_x64_mswu\wx_exe.pdb"
|
||||
SubSystem="2"
|
||||
TargetMachine="17"
|
||||
OptimizeReferences="2"
|
||||
|
|
@ -394,7 +394,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCBscMakeTool"
|
||||
OutputFile="vc_mswu_x64\dll_vc8_wx_exe.bsc"
|
||||
OutputFile="vc_x64_mswu\dll_vc8_wx_exe.bsc"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
|
|
|||
|
|
@ -386,8 +386,8 @@
|
|||
</Configuration>
|
||||
<Configuration
|
||||
Name="Debug|x64"
|
||||
OutputDirectory="vc_mswud_x64"
|
||||
IntermediateDirectory="vc_mswud_x64\my_dll"
|
||||
OutputDirectory="vc_x64_mswud"
|
||||
IntermediateDirectory="vc_x64_mswud\my_dll"
|
||||
ConfigurationType="2"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="false"
|
||||
|
|
@ -421,8 +421,8 @@
|
|||
RuntimeLibrary="3"
|
||||
BufferSecurityCheck="true"
|
||||
RuntimeTypeInfo="true"
|
||||
ObjectFile="vc_mswud_x64\my_dll\"
|
||||
ProgramDataBaseFileName="vc_mswud_x64\my_dll.pdb"
|
||||
ObjectFile="vc_x64_mswud\my_dll\"
|
||||
ProgramDataBaseFileName="vc_x64_mswud\my_dll.pdb"
|
||||
WarningLevel="4"
|
||||
SuppressStartupBanner="true"
|
||||
DebugInformationFormat="3"
|
||||
|
|
@ -443,14 +443,14 @@
|
|||
Name="VCLinkerTool"
|
||||
AdditionalOptions=""
|
||||
AdditionalDependencies="wxmsw31ud_core.lib wxbase31ud.lib wxtiffd.lib wxjpegd.lib wxpngd.lib wxzlibd.lib wxregexud.lib wxexpatd.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib shlwapi.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib version.lib ws2_32.lib wininet.lib"
|
||||
OutputFile="vc_mswud_x64\my_dll.dll"
|
||||
OutputFile="vc_x64_mswud\my_dll.dll"
|
||||
LinkIncremental="2"
|
||||
ImportLibrary="vc_mswud_x64\my_dll.lib"
|
||||
ImportLibrary="vc_x64_mswud\my_dll.lib"
|
||||
SuppressStartupBanner="true"
|
||||
AdditionalLibraryDirectories=".\..\..\lib\vc_x64_lib"
|
||||
GenerateManifest="true"
|
||||
GenerateDebugInformation="true"
|
||||
ProgramDatabaseFile="vc_mswud_x64\my_dll.pdb"
|
||||
ProgramDatabaseFile="vc_x64_mswud\my_dll.pdb"
|
||||
TargetMachine="17"
|
||||
/>
|
||||
<Tool
|
||||
|
|
@ -464,7 +464,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCBscMakeTool"
|
||||
OutputFile="vc_mswud_x64\dll_vc9_my_dll.bsc"
|
||||
OutputFile="vc_x64_mswud\dll_vc9_my_dll.bsc"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
|
@ -476,8 +476,8 @@
|
|||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|x64"
|
||||
OutputDirectory="vc_mswu_x64"
|
||||
IntermediateDirectory="vc_mswu_x64\my_dll"
|
||||
OutputDirectory="vc_x64_mswu"
|
||||
IntermediateDirectory="vc_x64_mswu\my_dll"
|
||||
ConfigurationType="2"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="false"
|
||||
|
|
@ -509,8 +509,8 @@
|
|||
ExceptionHandling="1"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="true"
|
||||
ObjectFile="vc_mswu_x64\my_dll\"
|
||||
ProgramDataBaseFileName="vc_mswu_x64\my_dll.pdb"
|
||||
ObjectFile="vc_x64_mswu\my_dll\"
|
||||
ProgramDataBaseFileName="vc_x64_mswu\my_dll.pdb"
|
||||
WarningLevel="4"
|
||||
SuppressStartupBanner="true"
|
||||
DebugInformationFormat="3"
|
||||
|
|
@ -531,14 +531,14 @@
|
|||
Name="VCLinkerTool"
|
||||
AdditionalOptions=""
|
||||
AdditionalDependencies="wxmsw31u_core.lib wxbase31u.lib wxtiff.lib wxjpeg.lib wxpng.lib wxzlib.lib wxregexu.lib wxexpat.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib shlwapi.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib version.lib ws2_32.lib wininet.lib"
|
||||
OutputFile="vc_mswu_x64\my_dll.dll"
|
||||
OutputFile="vc_x64_mswu\my_dll.dll"
|
||||
LinkIncremental="1"
|
||||
ImportLibrary="vc_mswu_x64\my_dll.lib"
|
||||
ImportLibrary="vc_x64_mswu\my_dll.lib"
|
||||
SuppressStartupBanner="true"
|
||||
AdditionalLibraryDirectories=".\..\..\lib\vc_x64_lib"
|
||||
GenerateManifest="true"
|
||||
GenerateDebugInformation="true"
|
||||
ProgramDatabaseFile="vc_mswu_x64\my_dll.pdb"
|
||||
ProgramDatabaseFile="vc_x64_mswu\my_dll.pdb"
|
||||
TargetMachine="17"
|
||||
OptimizeReferences="2"
|
||||
EnableCOMDATFolding="2"
|
||||
|
|
@ -554,7 +554,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCBscMakeTool"
|
||||
OutputFile="vc_mswu_x64\dll_vc9_my_dll.bsc"
|
||||
OutputFile="vc_x64_mswu\dll_vc9_my_dll.bsc"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
|
@ -566,8 +566,8 @@
|
|||
</Configuration>
|
||||
<Configuration
|
||||
Name="DLL Debug|x64"
|
||||
OutputDirectory="vc_mswuddll_x64"
|
||||
IntermediateDirectory="vc_mswuddll_x64\my_dll"
|
||||
OutputDirectory="vc_x64_mswuddll"
|
||||
IntermediateDirectory="vc_x64_mswuddll\my_dll"
|
||||
ConfigurationType="2"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="false"
|
||||
|
|
@ -601,8 +601,8 @@
|
|||
RuntimeLibrary="3"
|
||||
BufferSecurityCheck="true"
|
||||
RuntimeTypeInfo="true"
|
||||
ObjectFile="vc_mswuddll_x64\my_dll\"
|
||||
ProgramDataBaseFileName="vc_mswuddll_x64\my_dll.pdb"
|
||||
ObjectFile="vc_x64_mswuddll\my_dll\"
|
||||
ProgramDataBaseFileName="vc_x64_mswuddll\my_dll.pdb"
|
||||
WarningLevel="4"
|
||||
SuppressStartupBanner="true"
|
||||
DebugInformationFormat="3"
|
||||
|
|
@ -623,14 +623,14 @@
|
|||
Name="VCLinkerTool"
|
||||
AdditionalOptions=""
|
||||
AdditionalDependencies="wxmsw31ud_core.lib wxbase31ud.lib wxtiffd.lib wxjpegd.lib wxpngd.lib wxzlibd.lib wxregexud.lib wxexpatd.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib shlwapi.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib version.lib ws2_32.lib wininet.lib"
|
||||
OutputFile="vc_mswuddll_x64\my_dll.dll"
|
||||
OutputFile="vc_x64_mswuddll\my_dll.dll"
|
||||
LinkIncremental="2"
|
||||
ImportLibrary="vc_mswuddll_x64\my_dll.lib"
|
||||
ImportLibrary="vc_x64_mswuddll\my_dll.lib"
|
||||
SuppressStartupBanner="true"
|
||||
AdditionalLibraryDirectories=".\..\..\lib\vc_x64_dll"
|
||||
GenerateManifest="true"
|
||||
GenerateDebugInformation="true"
|
||||
ProgramDatabaseFile="vc_mswuddll_x64\my_dll.pdb"
|
||||
ProgramDatabaseFile="vc_x64_mswuddll\my_dll.pdb"
|
||||
TargetMachine="17"
|
||||
/>
|
||||
<Tool
|
||||
|
|
@ -644,7 +644,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCBscMakeTool"
|
||||
OutputFile="vc_mswuddll_x64\dll_vc9_my_dll.bsc"
|
||||
OutputFile="vc_x64_mswuddll\dll_vc9_my_dll.bsc"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
|
@ -656,8 +656,8 @@
|
|||
</Configuration>
|
||||
<Configuration
|
||||
Name="DLL Release|x64"
|
||||
OutputDirectory="vc_mswudll_x64"
|
||||
IntermediateDirectory="vc_mswudll_x64\my_dll"
|
||||
OutputDirectory="vc_x64_mswudll"
|
||||
IntermediateDirectory="vc_x64_mswudll\my_dll"
|
||||
ConfigurationType="2"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="false"
|
||||
|
|
@ -689,8 +689,8 @@
|
|||
ExceptionHandling="1"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="true"
|
||||
ObjectFile="vc_mswudll_x64\my_dll\"
|
||||
ProgramDataBaseFileName="vc_mswudll_x64\my_dll.pdb"
|
||||
ObjectFile="vc_x64_mswudll\my_dll\"
|
||||
ProgramDataBaseFileName="vc_x64_mswudll\my_dll.pdb"
|
||||
WarningLevel="4"
|
||||
SuppressStartupBanner="true"
|
||||
DebugInformationFormat="3"
|
||||
|
|
@ -711,14 +711,14 @@
|
|||
Name="VCLinkerTool"
|
||||
AdditionalOptions=""
|
||||
AdditionalDependencies="wxmsw31u_core.lib wxbase31u.lib wxtiff.lib wxjpeg.lib wxpng.lib wxzlib.lib wxregexu.lib wxexpat.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib shlwapi.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib version.lib ws2_32.lib wininet.lib"
|
||||
OutputFile="vc_mswudll_x64\my_dll.dll"
|
||||
OutputFile="vc_x64_mswudll\my_dll.dll"
|
||||
LinkIncremental="1"
|
||||
ImportLibrary="vc_mswudll_x64\my_dll.lib"
|
||||
ImportLibrary="vc_x64_mswudll\my_dll.lib"
|
||||
SuppressStartupBanner="true"
|
||||
AdditionalLibraryDirectories=".\..\..\lib\vc_x64_dll"
|
||||
GenerateManifest="true"
|
||||
GenerateDebugInformation="true"
|
||||
ProgramDatabaseFile="vc_mswudll_x64\my_dll.pdb"
|
||||
ProgramDatabaseFile="vc_x64_mswudll\my_dll.pdb"
|
||||
TargetMachine="17"
|
||||
OptimizeReferences="2"
|
||||
EnableCOMDATFolding="2"
|
||||
|
|
@ -734,7 +734,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCBscMakeTool"
|
||||
OutputFile="vc_mswudll_x64\dll_vc9_my_dll.bsc"
|
||||
OutputFile="vc_x64_mswudll\dll_vc9_my_dll.bsc"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
|
|
|||
|
|
@ -394,8 +394,8 @@
|
|||
</Configuration>
|
||||
<Configuration
|
||||
Name="Debug|x64"
|
||||
OutputDirectory="vc_mswud_x64"
|
||||
IntermediateDirectory="vc_mswud_x64\sdk_exe"
|
||||
OutputDirectory="vc_x64_mswud"
|
||||
IntermediateDirectory="vc_x64_mswud\sdk_exe"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="false"
|
||||
|
|
@ -428,8 +428,8 @@
|
|||
RuntimeLibrary="3"
|
||||
BufferSecurityCheck="true"
|
||||
RuntimeTypeInfo="true"
|
||||
ObjectFile="vc_mswud_x64\sdk_exe\"
|
||||
ProgramDataBaseFileName="vc_mswud_x64\sdk_exe.pdb"
|
||||
ObjectFile="vc_x64_mswud\sdk_exe\"
|
||||
ProgramDataBaseFileName="vc_x64_mswud\sdk_exe.pdb"
|
||||
WarningLevel="3"
|
||||
SuppressStartupBanner="true"
|
||||
DebugInformationFormat="3"
|
||||
|
|
@ -449,14 +449,14 @@
|
|||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
AdditionalOptions=""
|
||||
AdditionalDependencies="vc_mswud_x64\my_dll.lib user32.lib"
|
||||
OutputFile="vc_mswud_x64\sdk_exe.exe"
|
||||
AdditionalDependencies="vc_x64_mswud\my_dll.lib user32.lib"
|
||||
OutputFile="vc_x64_mswud\sdk_exe.exe"
|
||||
LinkIncremental="2"
|
||||
SuppressStartupBanner="true"
|
||||
AdditionalLibraryDirectories=""
|
||||
GenerateManifest="true"
|
||||
GenerateDebugInformation="true"
|
||||
ProgramDatabaseFile="vc_mswud_x64\sdk_exe.pdb"
|
||||
ProgramDatabaseFile="vc_x64_mswud\sdk_exe.pdb"
|
||||
SubSystem="2"
|
||||
TargetMachine="17"
|
||||
/>
|
||||
|
|
@ -471,7 +471,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCBscMakeTool"
|
||||
OutputFile="vc_mswud_x64\dll_vc9_sdk_exe.bsc"
|
||||
OutputFile="vc_x64_mswud\dll_vc9_sdk_exe.bsc"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
|
@ -486,8 +486,8 @@
|
|||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|x64"
|
||||
OutputDirectory="vc_mswu_x64"
|
||||
IntermediateDirectory="vc_mswu_x64\sdk_exe"
|
||||
OutputDirectory="vc_x64_mswu"
|
||||
IntermediateDirectory="vc_x64_mswu\sdk_exe"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="false"
|
||||
|
|
@ -518,8 +518,8 @@
|
|||
ExceptionHandling="1"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="true"
|
||||
ObjectFile="vc_mswu_x64\sdk_exe\"
|
||||
ProgramDataBaseFileName="vc_mswu_x64\sdk_exe.pdb"
|
||||
ObjectFile="vc_x64_mswu\sdk_exe\"
|
||||
ProgramDataBaseFileName="vc_x64_mswu\sdk_exe.pdb"
|
||||
WarningLevel="3"
|
||||
SuppressStartupBanner="true"
|
||||
DebugInformationFormat="3"
|
||||
|
|
@ -539,14 +539,14 @@
|
|||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
AdditionalOptions=""
|
||||
AdditionalDependencies="vc_mswu_x64\my_dll.lib user32.lib"
|
||||
OutputFile="vc_mswu_x64\sdk_exe.exe"
|
||||
AdditionalDependencies="vc_x64_mswu\my_dll.lib user32.lib"
|
||||
OutputFile="vc_x64_mswu\sdk_exe.exe"
|
||||
LinkIncremental="1"
|
||||
SuppressStartupBanner="true"
|
||||
AdditionalLibraryDirectories=""
|
||||
GenerateManifest="true"
|
||||
GenerateDebugInformation="true"
|
||||
ProgramDatabaseFile="vc_mswu_x64\sdk_exe.pdb"
|
||||
ProgramDatabaseFile="vc_x64_mswu\sdk_exe.pdb"
|
||||
SubSystem="2"
|
||||
TargetMachine="17"
|
||||
OptimizeReferences="2"
|
||||
|
|
@ -563,7 +563,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCBscMakeTool"
|
||||
OutputFile="vc_mswu_x64\dll_vc9_sdk_exe.bsc"
|
||||
OutputFile="vc_x64_mswu\dll_vc9_sdk_exe.bsc"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
|
@ -578,8 +578,8 @@
|
|||
</Configuration>
|
||||
<Configuration
|
||||
Name="DLL Debug|x64"
|
||||
OutputDirectory="vc_mswuddll_x64"
|
||||
IntermediateDirectory="vc_mswuddll_x64\sdk_exe"
|
||||
OutputDirectory="vc_x64_mswuddll"
|
||||
IntermediateDirectory="vc_x64_mswuddll\sdk_exe"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="false"
|
||||
|
|
@ -612,8 +612,8 @@
|
|||
RuntimeLibrary="3"
|
||||
BufferSecurityCheck="true"
|
||||
RuntimeTypeInfo="true"
|
||||
ObjectFile="vc_mswuddll_x64\sdk_exe\"
|
||||
ProgramDataBaseFileName="vc_mswuddll_x64\sdk_exe.pdb"
|
||||
ObjectFile="vc_x64_mswuddll\sdk_exe\"
|
||||
ProgramDataBaseFileName="vc_x64_mswuddll\sdk_exe.pdb"
|
||||
WarningLevel="3"
|
||||
SuppressStartupBanner="true"
|
||||
DebugInformationFormat="3"
|
||||
|
|
@ -633,14 +633,14 @@
|
|||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
AdditionalOptions=""
|
||||
AdditionalDependencies="vc_mswuddll_x64\my_dll.lib user32.lib"
|
||||
OutputFile="vc_mswuddll_x64\sdk_exe.exe"
|
||||
AdditionalDependencies="vc_x64_mswuddll\my_dll.lib user32.lib"
|
||||
OutputFile="vc_x64_mswuddll\sdk_exe.exe"
|
||||
LinkIncremental="2"
|
||||
SuppressStartupBanner="true"
|
||||
AdditionalLibraryDirectories=""
|
||||
GenerateManifest="true"
|
||||
GenerateDebugInformation="true"
|
||||
ProgramDatabaseFile="vc_mswuddll_x64\sdk_exe.pdb"
|
||||
ProgramDatabaseFile="vc_x64_mswuddll\sdk_exe.pdb"
|
||||
SubSystem="2"
|
||||
TargetMachine="17"
|
||||
/>
|
||||
|
|
@ -655,7 +655,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCBscMakeTool"
|
||||
OutputFile="vc_mswuddll_x64\dll_vc9_sdk_exe.bsc"
|
||||
OutputFile="vc_x64_mswuddll\dll_vc9_sdk_exe.bsc"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
|
@ -670,8 +670,8 @@
|
|||
</Configuration>
|
||||
<Configuration
|
||||
Name="DLL Release|x64"
|
||||
OutputDirectory="vc_mswudll_x64"
|
||||
IntermediateDirectory="vc_mswudll_x64\sdk_exe"
|
||||
OutputDirectory="vc_x64_mswudll"
|
||||
IntermediateDirectory="vc_x64_mswudll\sdk_exe"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="false"
|
||||
|
|
@ -702,8 +702,8 @@
|
|||
ExceptionHandling="1"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="true"
|
||||
ObjectFile="vc_mswudll_x64\sdk_exe\"
|
||||
ProgramDataBaseFileName="vc_mswudll_x64\sdk_exe.pdb"
|
||||
ObjectFile="vc_x64_mswudll\sdk_exe\"
|
||||
ProgramDataBaseFileName="vc_x64_mswudll\sdk_exe.pdb"
|
||||
WarningLevel="3"
|
||||
SuppressStartupBanner="true"
|
||||
DebugInformationFormat="3"
|
||||
|
|
@ -723,14 +723,14 @@
|
|||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
AdditionalOptions=""
|
||||
AdditionalDependencies="vc_mswudll_x64\my_dll.lib user32.lib"
|
||||
OutputFile="vc_mswudll_x64\sdk_exe.exe"
|
||||
AdditionalDependencies="vc_x64_mswudll\my_dll.lib user32.lib"
|
||||
OutputFile="vc_x64_mswudll\sdk_exe.exe"
|
||||
LinkIncremental="1"
|
||||
SuppressStartupBanner="true"
|
||||
AdditionalLibraryDirectories=""
|
||||
GenerateManifest="true"
|
||||
GenerateDebugInformation="true"
|
||||
ProgramDatabaseFile="vc_mswudll_x64\sdk_exe.pdb"
|
||||
ProgramDatabaseFile="vc_x64_mswudll\sdk_exe.pdb"
|
||||
SubSystem="2"
|
||||
TargetMachine="17"
|
||||
OptimizeReferences="2"
|
||||
|
|
@ -747,7 +747,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCBscMakeTool"
|
||||
OutputFile="vc_mswudll_x64\dll_vc9_sdk_exe.bsc"
|
||||
OutputFile="vc_x64_mswudll\dll_vc9_sdk_exe.bsc"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
|
|
|||
|
|
@ -212,8 +212,8 @@
|
|||
</Configuration>
|
||||
<Configuration
|
||||
Name="Debug|x64"
|
||||
OutputDirectory="vc_mswud_x64"
|
||||
IntermediateDirectory="vc_mswud_x64\wx_exe"
|
||||
OutputDirectory="vc_x64_mswud"
|
||||
IntermediateDirectory="vc_x64_mswud\wx_exe"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="false"
|
||||
|
|
@ -247,8 +247,8 @@
|
|||
RuntimeLibrary="3"
|
||||
BufferSecurityCheck="true"
|
||||
RuntimeTypeInfo="true"
|
||||
ObjectFile="vc_mswud_x64\wx_exe\"
|
||||
ProgramDataBaseFileName="vc_mswud_x64\wx_exe.pdb"
|
||||
ObjectFile="vc_x64_mswud\wx_exe\"
|
||||
ProgramDataBaseFileName="vc_x64_mswud\wx_exe.pdb"
|
||||
WarningLevel="4"
|
||||
SuppressStartupBanner="true"
|
||||
DebugInformationFormat="3"
|
||||
|
|
@ -268,14 +268,14 @@
|
|||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
AdditionalOptions=""
|
||||
AdditionalDependencies="wxmsw31ud_core.lib wxbase31ud.lib vc_mswud_x64\my_dll.lib wxtiffd.lib wxjpegd.lib wxpngd.lib wxzlibd.lib wxregexud.lib wxexpatd.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib shlwapi.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib version.lib ws2_32.lib wininet.lib"
|
||||
OutputFile="vc_mswud_x64\wx_exe.exe"
|
||||
AdditionalDependencies="wxmsw31ud_core.lib wxbase31ud.lib vc_x64_mswud\my_dll.lib wxtiffd.lib wxjpegd.lib wxpngd.lib wxzlibd.lib wxregexud.lib wxexpatd.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib shlwapi.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib version.lib ws2_32.lib wininet.lib"
|
||||
OutputFile="vc_x64_mswud\wx_exe.exe"
|
||||
LinkIncremental="2"
|
||||
SuppressStartupBanner="true"
|
||||
AdditionalLibraryDirectories=".\..\..\lib\vc_x64_lib"
|
||||
GenerateManifest="true"
|
||||
GenerateDebugInformation="true"
|
||||
ProgramDatabaseFile="vc_mswud_x64\wx_exe.pdb"
|
||||
ProgramDatabaseFile="vc_x64_mswud\wx_exe.pdb"
|
||||
SubSystem="2"
|
||||
TargetMachine="17"
|
||||
/>
|
||||
|
|
@ -290,7 +290,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCBscMakeTool"
|
||||
OutputFile="vc_mswud_x64\dll_vc9_wx_exe.bsc"
|
||||
OutputFile="vc_x64_mswud\dll_vc9_wx_exe.bsc"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
|
@ -305,8 +305,8 @@
|
|||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|x64"
|
||||
OutputDirectory="vc_mswu_x64"
|
||||
IntermediateDirectory="vc_mswu_x64\wx_exe"
|
||||
OutputDirectory="vc_x64_mswu"
|
||||
IntermediateDirectory="vc_x64_mswu\wx_exe"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="false"
|
||||
|
|
@ -338,8 +338,8 @@
|
|||
ExceptionHandling="1"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="true"
|
||||
ObjectFile="vc_mswu_x64\wx_exe\"
|
||||
ProgramDataBaseFileName="vc_mswu_x64\wx_exe.pdb"
|
||||
ObjectFile="vc_x64_mswu\wx_exe\"
|
||||
ProgramDataBaseFileName="vc_x64_mswu\wx_exe.pdb"
|
||||
WarningLevel="4"
|
||||
SuppressStartupBanner="true"
|
||||
DebugInformationFormat="3"
|
||||
|
|
@ -359,14 +359,14 @@
|
|||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
AdditionalOptions=""
|
||||
AdditionalDependencies="wxmsw31u_core.lib wxbase31u.lib vc_mswu_x64\my_dll.lib wxtiff.lib wxjpeg.lib wxpng.lib wxzlib.lib wxregexu.lib wxexpat.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib shlwapi.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib version.lib ws2_32.lib wininet.lib"
|
||||
OutputFile="vc_mswu_x64\wx_exe.exe"
|
||||
AdditionalDependencies="wxmsw31u_core.lib wxbase31u.lib vc_x64_mswu\my_dll.lib wxtiff.lib wxjpeg.lib wxpng.lib wxzlib.lib wxregexu.lib wxexpat.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib shlwapi.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib version.lib ws2_32.lib wininet.lib"
|
||||
OutputFile="vc_x64_mswu\wx_exe.exe"
|
||||
LinkIncremental="1"
|
||||
SuppressStartupBanner="true"
|
||||
AdditionalLibraryDirectories=".\..\..\lib\vc_x64_lib"
|
||||
GenerateManifest="true"
|
||||
GenerateDebugInformation="true"
|
||||
ProgramDatabaseFile="vc_mswu_x64\wx_exe.pdb"
|
||||
ProgramDatabaseFile="vc_x64_mswu\wx_exe.pdb"
|
||||
SubSystem="2"
|
||||
TargetMachine="17"
|
||||
OptimizeReferences="2"
|
||||
|
|
@ -383,7 +383,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCBscMakeTool"
|
||||
OutputFile="vc_mswu_x64\dll_vc9_wx_exe.bsc"
|
||||
OutputFile="vc_x64_mswu\dll_vc9_wx_exe.bsc"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@
|
|||
WX_RELEASE_NODOT = 31
|
||||
COMPILER_PREFIX = vc
|
||||
OBJS = \
|
||||
$(COMPILER_PREFIX)$(COMPILER_VERSION)_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WXDLLFLAG)$(CFG)$(ARCH_SUFFIX)
|
||||
$(COMPILER_PREFIX)$(COMPILER_VERSION)$(ARCH_SUFFIX)_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WXDLLFLAG)$(CFG)
|
||||
LIBDIRNAME = \
|
||||
.\..\..\lib\$(COMPILER_PREFIX)$(COMPILER_VERSION)$(ARCH_SUFFIX)_$(LIBTYPE_SUFFIX)$(CFG)
|
||||
SETUPHDIR = \
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue