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:
@@ -412,8 +412,8 @@
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Debug|x64"
|
||||
OutputDirectory="vc_mswud_x64"
|
||||
IntermediateDirectory="vc_mswud_x64\render"
|
||||
OutputDirectory="vc_x64_mswud"
|
||||
IntermediateDirectory="vc_x64_mswud\render"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="false"
|
||||
@@ -447,8 +447,8 @@
|
||||
RuntimeLibrary="3"
|
||||
BufferSecurityCheck="true"
|
||||
RuntimeTypeInfo="true"
|
||||
ObjectFile="vc_mswud_x64\render\"
|
||||
ProgramDataBaseFileName="vc_mswud_x64\render.pdb"
|
||||
ObjectFile="vc_x64_mswud\render\"
|
||||
ProgramDataBaseFileName="vc_x64_mswud\render.pdb"
|
||||
WarningLevel="4"
|
||||
SuppressStartupBanner="true"
|
||||
Detect64BitPortabilityProblems="true"
|
||||
@@ -470,13 +470,13 @@
|
||||
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\render.exe"
|
||||
OutputFile="vc_x64_mswud\render.exe"
|
||||
LinkIncremental="2"
|
||||
SuppressStartupBanner="true"
|
||||
AdditionalLibraryDirectories=".\..\..\lib\vc_x64_lib"
|
||||
GenerateManifest="true"
|
||||
GenerateDebugInformation="true"
|
||||
ProgramDatabaseFile="vc_mswud_x64\render.pdb"
|
||||
ProgramDatabaseFile="vc_x64_mswud\render.pdb"
|
||||
SubSystem="2"
|
||||
TargetMachine="17"
|
||||
/>
|
||||
@@ -491,7 +491,7 @@
|
||||
/>
|
||||
<Tool
|
||||
Name="VCBscMakeTool"
|
||||
OutputFile="vc_mswud_x64\render_vc8_render.bsc"
|
||||
OutputFile="vc_x64_mswud\render_vc8_render.bsc"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
@@ -509,8 +509,8 @@
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|x64"
|
||||
OutputDirectory="vc_mswu_x64"
|
||||
IntermediateDirectory="vc_mswu_x64\render"
|
||||
OutputDirectory="vc_x64_mswu"
|
||||
IntermediateDirectory="vc_x64_mswu\render"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="false"
|
||||
@@ -541,8 +541,8 @@
|
||||
ExceptionHandling="1"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="true"
|
||||
ObjectFile="vc_mswu_x64\render\"
|
||||
ProgramDataBaseFileName="vc_mswu_x64\render.pdb"
|
||||
ObjectFile="vc_x64_mswu\render\"
|
||||
ProgramDataBaseFileName="vc_x64_mswu\render.pdb"
|
||||
WarningLevel="4"
|
||||
SuppressStartupBanner="true"
|
||||
Detect64BitPortabilityProblems="true"
|
||||
@@ -564,13 +564,13 @@
|
||||
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\render.exe"
|
||||
OutputFile="vc_x64_mswu\render.exe"
|
||||
LinkIncremental="1"
|
||||
SuppressStartupBanner="true"
|
||||
AdditionalLibraryDirectories=".\..\..\lib\vc_x64_lib"
|
||||
GenerateManifest="true"
|
||||
GenerateDebugInformation="true"
|
||||
ProgramDatabaseFile="vc_mswu_x64\render.pdb"
|
||||
ProgramDatabaseFile="vc_x64_mswu\render.pdb"
|
||||
SubSystem="2"
|
||||
TargetMachine="17"
|
||||
OptimizeReferences="2"
|
||||
@@ -587,7 +587,7 @@
|
||||
/>
|
||||
<Tool
|
||||
Name="VCBscMakeTool"
|
||||
OutputFile="vc_mswu_x64\render_vc8_render.bsc"
|
||||
OutputFile="vc_x64_mswu\render_vc8_render.bsc"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
@@ -605,8 +605,8 @@
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="DLL Debug|x64"
|
||||
OutputDirectory="vc_mswuddll_x64"
|
||||
IntermediateDirectory="vc_mswuddll_x64\render"
|
||||
OutputDirectory="vc_x64_mswuddll"
|
||||
IntermediateDirectory="vc_x64_mswuddll\render"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="false"
|
||||
@@ -640,8 +640,8 @@
|
||||
RuntimeLibrary="3"
|
||||
BufferSecurityCheck="true"
|
||||
RuntimeTypeInfo="true"
|
||||
ObjectFile="vc_mswuddll_x64\render\"
|
||||
ProgramDataBaseFileName="vc_mswuddll_x64\render.pdb"
|
||||
ObjectFile="vc_x64_mswuddll\render\"
|
||||
ProgramDataBaseFileName="vc_x64_mswuddll\render.pdb"
|
||||
WarningLevel="4"
|
||||
SuppressStartupBanner="true"
|
||||
Detect64BitPortabilityProblems="true"
|
||||
@@ -663,13 +663,13 @@
|
||||
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\render.exe"
|
||||
OutputFile="vc_x64_mswuddll\render.exe"
|
||||
LinkIncremental="2"
|
||||
SuppressStartupBanner="true"
|
||||
AdditionalLibraryDirectories=".\..\..\lib\vc_x64_dll"
|
||||
GenerateManifest="true"
|
||||
GenerateDebugInformation="true"
|
||||
ProgramDatabaseFile="vc_mswuddll_x64\render.pdb"
|
||||
ProgramDatabaseFile="vc_x64_mswuddll\render.pdb"
|
||||
SubSystem="2"
|
||||
TargetMachine="17"
|
||||
/>
|
||||
@@ -684,7 +684,7 @@
|
||||
/>
|
||||
<Tool
|
||||
Name="VCBscMakeTool"
|
||||
OutputFile="vc_mswuddll_x64\render_vc8_render.bsc"
|
||||
OutputFile="vc_x64_mswuddll\render_vc8_render.bsc"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
@@ -702,8 +702,8 @@
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="DLL Release|x64"
|
||||
OutputDirectory="vc_mswudll_x64"
|
||||
IntermediateDirectory="vc_mswudll_x64\render"
|
||||
OutputDirectory="vc_x64_mswudll"
|
||||
IntermediateDirectory="vc_x64_mswudll\render"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="false"
|
||||
@@ -734,8 +734,8 @@
|
||||
ExceptionHandling="1"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="true"
|
||||
ObjectFile="vc_mswudll_x64\render\"
|
||||
ProgramDataBaseFileName="vc_mswudll_x64\render.pdb"
|
||||
ObjectFile="vc_x64_mswudll\render\"
|
||||
ProgramDataBaseFileName="vc_x64_mswudll\render.pdb"
|
||||
WarningLevel="4"
|
||||
SuppressStartupBanner="true"
|
||||
Detect64BitPortabilityProblems="true"
|
||||
@@ -757,13 +757,13 @@
|
||||
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\render.exe"
|
||||
OutputFile="vc_x64_mswudll\render.exe"
|
||||
LinkIncremental="1"
|
||||
SuppressStartupBanner="true"
|
||||
AdditionalLibraryDirectories=".\..\..\lib\vc_x64_dll"
|
||||
GenerateManifest="true"
|
||||
GenerateDebugInformation="true"
|
||||
ProgramDatabaseFile="vc_mswudll_x64\render.pdb"
|
||||
ProgramDatabaseFile="vc_x64_mswudll\render.pdb"
|
||||
SubSystem="2"
|
||||
TargetMachine="17"
|
||||
OptimizeReferences="2"
|
||||
@@ -780,7 +780,7 @@
|
||||
/>
|
||||
<Tool
|
||||
Name="VCBscMakeTool"
|
||||
OutputFile="vc_mswudll_x64\render_vc8_render.bsc"
|
||||
OutputFile="vc_x64_mswudll\render_vc8_render.bsc"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
Reference in New Issue
Block a user