mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-10 18:51:21 +03:00
0028077: Add option for genproj to generate UWP projects
Ability to generate UWP solution was added to genproj command, applied when VC version set to "vc14-uwp". Environment variables are used to find installed Microsoft SDKs. Visual Studio project option "Use precompiled headers" is set to "Not Using" by default. Character set option of VS project Unicode is used instead of preprocessor definitions for UWP projects.
This commit is contained in:
parent
2fb5823d31
commit
7fbac3c240
113
adm/genproj.tcl
113
adm/genproj.tcl
@ -256,7 +256,7 @@ proc genAllResources {} {
|
|||||||
|
|
||||||
# Wrapper-function to generate VS project files
|
# Wrapper-function to generate VS project files
|
||||||
proc genproj {theIDE args} {
|
proc genproj {theIDE args} {
|
||||||
set aSupportedIDEs { "vc7" "vc8" "vc9" "vc10" "vc11" "vc12" "vc14" "cbp" "xcd" }
|
set aSupportedIDEs { "vc7" "vc8" "vc9" "vc10" "vc11" "vc12" "vc14" "vc14-uwp" "cbp" "xcd"}
|
||||||
set aSupportedPlatforms { "wnt" "lin" "mac" "ios" "qnx" }
|
set aSupportedPlatforms { "wnt" "lin" "mac" "ios" "qnx" }
|
||||||
set isHelpRequire false
|
set isHelpRequire false
|
||||||
|
|
||||||
@ -311,6 +311,7 @@ proc genproj {theIDE args} {
|
|||||||
vc11 - Visual Studio 2012
|
vc11 - Visual Studio 2012
|
||||||
vc12 - Visual Studio 2013
|
vc12 - Visual Studio 2013
|
||||||
vc14 - Visual Studio 2015
|
vc14 - Visual Studio 2015
|
||||||
|
vc14-uwp - Visual Studio 2015 for Universal Windows Platform project
|
||||||
cbp - CodeBlocks
|
cbp - CodeBlocks
|
||||||
xcd - XCode
|
xcd - XCode
|
||||||
|
|
||||||
@ -370,7 +371,7 @@ proc genprojbat {theIDE thePlatform} {
|
|||||||
file copy -force -- "$::THE_CASROOT/adm/templates/draw.${aTargetPlatformExt}" "$::path/draw.${aTargetPlatformExt}"
|
file copy -force -- "$::THE_CASROOT/adm/templates/draw.${aTargetPlatformExt}" "$::path/draw.${aTargetPlatformExt}"
|
||||||
}
|
}
|
||||||
|
|
||||||
if {[regexp {(vc)[0-9]*$} $theIDE] == 1} {
|
if {[regexp {(vc)[0-9]*$} $theIDE] == 1 || [regexp {(vc)[0-9]*-uwp$} $theIDE] == 1} {
|
||||||
file copy -force -- "$::THE_CASROOT/adm/templates/msvc.bat" "$::path/msvc.bat"
|
file copy -force -- "$::THE_CASROOT/adm/templates/msvc.bat" "$::path/msvc.bat"
|
||||||
} else {
|
} else {
|
||||||
switch -exact -- "$theIDE" {
|
switch -exact -- "$theIDE" {
|
||||||
@ -413,7 +414,7 @@ proc OS:MKPRC { theOutDir theIDE theLibType thePlatform theCmpl } {
|
|||||||
|
|
||||||
# Create output directory
|
# Create output directory
|
||||||
set aWokStation "$thePlatform"
|
set aWokStation "$thePlatform"
|
||||||
if { [lsearch -exact {vc7 vc8 vc9 vc10 vc11 vc12 vc14} $theIDE] != -1 } {
|
if { [lsearch -exact {vc7 vc8 vc9 vc10 vc11 vc12 vc14 vc14-uwp} $theIDE] != -1 } {
|
||||||
set aWokStation "msvc"
|
set aWokStation "msvc"
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -441,6 +442,14 @@ proc OS:MKPRC { theOutDir theIDE theLibType thePlatform theCmpl } {
|
|||||||
set aModules [osutils:juststation $goaway $aModules]
|
set aModules [osutils:juststation $goaway $aModules]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# Draw module is turned off due to it is not supported on UWP
|
||||||
|
if { [regexp {(vc)[0-9]*-uwp$} $theIDE] == 1 } {
|
||||||
|
set aDrawIndex [lsearch -exact ${aModules} "Draw"]
|
||||||
|
if { ${aDrawIndex} != -1 } {
|
||||||
|
set aModules [lreplace ${aModules} ${aDrawIndex} ${aDrawIndex}]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
# generate one solution for all projects if complete OS or VAS is processed
|
# generate one solution for all projects if complete OS or VAS is processed
|
||||||
set anAllSolution "OCCT"
|
set anAllSolution "OCCT"
|
||||||
|
|
||||||
@ -468,7 +477,8 @@ proc OS:MKPRC { theOutDir theIDE theLibType thePlatform theCmpl } {
|
|||||||
"vc10" -
|
"vc10" -
|
||||||
"vc11" -
|
"vc11" -
|
||||||
"vc12" -
|
"vc12" -
|
||||||
"vc14" { OS:MKVC $anOutDir $aModules $anAllSolution $theIDE }
|
"vc14" -
|
||||||
|
"vc14-uwp" { OS:MKVC $anOutDir $aModules $anAllSolution $theIDE }
|
||||||
"cbp" { OS:MKCBP $anOutDir $aModules $anAllSolution $thePlatform $theCmpl }
|
"cbp" { OS:MKCBP $anOutDir $aModules $anAllSolution $thePlatform $theCmpl }
|
||||||
"xcd" {
|
"xcd" {
|
||||||
set ::THE_GUIDS_LIST($::aTKNullKey) "000000000000000000000000"
|
set ::THE_GUIDS_LIST($::aTKNullKey) "000000000000000000000000"
|
||||||
@ -907,7 +917,7 @@ proc osutils:vcsolution:header { vcversion } {
|
|||||||
append var \
|
append var \
|
||||||
"Microsoft Visual Studio Solution File, Format Version 13.00\n" \
|
"Microsoft Visual Studio Solution File, Format Version 13.00\n" \
|
||||||
"# Visual Studio 2013\n"
|
"# Visual Studio 2013\n"
|
||||||
} elseif { "$vcversion" == "vc14" } {
|
} elseif { "$vcversion" == "vc14" || "$vcversion" == "vc14-uwp"} {
|
||||||
append var \
|
append var \
|
||||||
"Microsoft Visual Studio Solution File, Format Version 12.00\n" \
|
"Microsoft Visual Studio Solution File, Format Version 12.00\n" \
|
||||||
"# Visual Studio 14\n"
|
"# Visual Studio 14\n"
|
||||||
@ -1144,19 +1154,41 @@ proc osutils:vcproj:readtemplate {theVcVer isexec} {
|
|||||||
set aVerExt "v${aVerExt}0"
|
set aVerExt "v${aVerExt}0"
|
||||||
set aCmpl32 ""
|
set aCmpl32 ""
|
||||||
set aCmpl64 ""
|
set aCmpl64 ""
|
||||||
|
set aCharSet "MultiByte"
|
||||||
if { $isexec } {
|
if { $isexec } {
|
||||||
set anExt "${anExt}x"
|
set anExt "${anExt}x"
|
||||||
set what "$what executable"
|
set what "$what executable"
|
||||||
}
|
}
|
||||||
if { "$theVcVer" == "vc10" } {
|
if { "$theVcVer" == "vc10" } {
|
||||||
# SSE2 is enabled by default in vc11+, but not in vc10 for 32-bit target
|
# SSE2 is enabled by default in vc11+, but not in vc10 for 32-bit target
|
||||||
set aCmpl32 "\n <EnableEnhancedInstructionSet>StreamingSIMDExtensions2</EnableEnhancedInstructionSet>"
|
set aCmpl32 "<EnableEnhancedInstructionSet>StreamingSIMDExtensions2</EnableEnhancedInstructionSet>"
|
||||||
}
|
}
|
||||||
set aTmpl [osutils:readtemplate $anExt "MS VC++ project ($what)"]
|
set aTmpl [osutils:readtemplate $anExt "MS VC++ project ($what)"]
|
||||||
|
|
||||||
|
if { $theVcVer == "vc14-uwp" } {
|
||||||
|
set aVerExt "v140"
|
||||||
|
set UwpWinRt "<CompileAsWinRT>false</CompileAsWinRT>"
|
||||||
|
foreach bitness {32 64} {
|
||||||
|
set indent ""
|
||||||
|
if {"[set aCmpl${bitness}]" != ""} {
|
||||||
|
set indent "\n "
|
||||||
|
}
|
||||||
|
set aCmpl${bitness} "[set aCmpl${bitness}]${indent}${UwpWinRt}"
|
||||||
|
}
|
||||||
|
set aCharSet "Unicode"
|
||||||
|
}
|
||||||
|
|
||||||
|
foreach bitness {32 64} {
|
||||||
|
set format_template ""
|
||||||
|
if {"[set aCmpl${bitness}]" == ""} {
|
||||||
|
set format_template "\[\\r\\n\\s\]*"
|
||||||
|
}
|
||||||
|
regsub -all -- "${format_template}__VCMPL${bitness}__" $aTmpl "[set aCmpl${bitness}]" aTmpl
|
||||||
|
}
|
||||||
|
|
||||||
regsub -all -- {__VCVER__} $aTmpl $theVcVer aTmpl
|
regsub -all -- {__VCVER__} $aTmpl $theVcVer aTmpl
|
||||||
regsub -all -- {__VCVEREXT__} $aTmpl $aVerExt aTmpl
|
regsub -all -- {__VCVEREXT__} $aTmpl $aVerExt aTmpl
|
||||||
regsub -all -- {__VCMPL32__} $aTmpl $aCmpl32 aTmpl
|
regsub -all -- {__VCCHARSET__} $aTmpl $aCharSet aTmpl
|
||||||
regsub -all -- {__VCMPL64__} $aTmpl $aCmpl64 aTmpl
|
|
||||||
return $aTmpl
|
return $aTmpl
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1600,7 +1632,14 @@ proc osutils:vcproj { theVcVer theOutDir theToolKit theGuidsMap {theProjTmpl {}
|
|||||||
}
|
}
|
||||||
regsub -all -- {__PROJECT_GUID__} $theProjTmpl $aGuidsMap($theToolKit) theProjTmpl
|
regsub -all -- {__PROJECT_GUID__} $theProjTmpl $aGuidsMap($theToolKit) theProjTmpl
|
||||||
|
|
||||||
|
set theProjTmpl [osutils:uwp:proj ${theVcVer} ${theProjTmpl}]
|
||||||
|
|
||||||
set aUsedLibs [list]
|
set aUsedLibs [list]
|
||||||
|
|
||||||
|
if { "$theVcVer" == "vc14-uwp" } {
|
||||||
|
lappend aUsedLibs "WindowsApp.lib"
|
||||||
|
}
|
||||||
|
|
||||||
foreach tkx [osutils:commonUsedTK $theToolKit] {
|
foreach tkx [osutils:commonUsedTK $theToolKit] {
|
||||||
lappend aUsedLibs "${tkx}.lib"
|
lappend aUsedLibs "${tkx}.lib"
|
||||||
}
|
}
|
||||||
@ -3227,3 +3266,61 @@ proc osutils:xcdx { theOutDir theExecutable theGuidsMap } {
|
|||||||
puts $aPlistFile $aPlistTmpl
|
puts $aPlistFile $aPlistTmpl
|
||||||
close $aPlistFile
|
close $aPlistFile
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# Returns available Windows SDKs versions
|
||||||
|
proc osutils:sdk { theSdkMajorVer {isQuietMode false} {theSdkDirectories {}} } {
|
||||||
|
if { ![llength ${theSdkDirectories}] } {
|
||||||
|
foreach anEnvVar { "ProgramFiles" "ProgramFiles\(x86\)" "ProgramW6432" } {
|
||||||
|
if {[ info exists ::env(${anEnvVar}) ]} {
|
||||||
|
lappend theSdkDirectories "$::env(${anEnvVar})/Windows Kits/${theSdkMajorVer}/Include"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
set sdk_versions {}
|
||||||
|
foreach sdk_dir ${theSdkDirectories} {
|
||||||
|
if { [file isdirectory ${sdk_dir}] } {
|
||||||
|
lappend sdk_versions [glob -tails -directory "${sdk_dir}" -type d *]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if {![llength ${sdk_versions}] && !${isQuietMode}} {
|
||||||
|
error "Error : Could not find Windows SDK ${theSdkMajorVer}"
|
||||||
|
}
|
||||||
|
|
||||||
|
return [join [lsort -unique ${sdk_versions}] " "]
|
||||||
|
}
|
||||||
|
|
||||||
|
# Generate global properties to Visual Studio project file for UWP solution
|
||||||
|
proc osutils:uwp:proj { theVcVer theProjTmpl } {
|
||||||
|
|
||||||
|
set uwp_properties ""
|
||||||
|
set uwp_generate_metadata ""
|
||||||
|
set uwp_app_container ""
|
||||||
|
|
||||||
|
set format_template ""
|
||||||
|
|
||||||
|
if { ${theVcVer} == "vc14-uwp" } {
|
||||||
|
set sdk_versions [osutils:sdk 10]
|
||||||
|
set sdk_max_ver [lindex ${sdk_versions} end]
|
||||||
|
|
||||||
|
set uwp_properties "<DefaultLanguage>en-US</DefaultLanguage>\n \
|
||||||
|
<ApplicationType>Windows Store</ApplicationType>\n \
|
||||||
|
<ApplicationTypeRevision>10.0</ApplicationTypeRevision>\n \
|
||||||
|
<MinimumVisualStudioVersion>14.0</MinimumVisualStudioVersion>\n \
|
||||||
|
<AppContainerApplication>true</AppContainerApplication>\n \
|
||||||
|
<WindowsTargetPlatformVersion>${sdk_max_ver}</WindowsTargetPlatformVersion>\n \
|
||||||
|
<WindowsTargetPlatformMinVersion>${sdk_max_ver}</WindowsTargetPlatformMinVersion>"
|
||||||
|
|
||||||
|
set uwp_generate_metadata "<GenerateWindowsMetadata>false</GenerateWindowsMetadata>"
|
||||||
|
|
||||||
|
regsub -all -- {[\r\n\s]*<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>} ${theProjTmpl} "" theProjTmpl
|
||||||
|
} else {
|
||||||
|
set format_template "\[\\r\\n\\s\]*"
|
||||||
|
}
|
||||||
|
|
||||||
|
regsub -all -- "${format_template}__UWP_PROPERTIES__" ${theProjTmpl} "${uwp_properties}" theProjTmpl
|
||||||
|
regsub -all -- "${format_template}__UWP_GENERATE_METADATA__" ${theProjTmpl} "${uwp_generate_metadata}" theProjTmpl
|
||||||
|
|
||||||
|
return ${theProjTmpl}
|
||||||
|
}
|
||||||
|
@ -28,6 +28,8 @@ if /I "%VCVER%" == "vc8" (
|
|||||||
set "VisualStudioExpressName=WDExpress"
|
set "VisualStudioExpressName=WDExpress"
|
||||||
) else if /I "%VCVER%" == "vc14" (
|
) else if /I "%VCVER%" == "vc14" (
|
||||||
set "DevEnvDir=%VS140COMNTOOLS%..\IDE"
|
set "DevEnvDir=%VS140COMNTOOLS%..\IDE"
|
||||||
|
) else if /I "%VCVER%" == "vc14-uwp" (
|
||||||
|
set "DevEnvDir=%VS140COMNTOOLS%..\IDE"
|
||||||
) else (
|
) else (
|
||||||
echo Error: wrong VS identifier
|
echo Error: wrong VS identifier
|
||||||
exit /B
|
exit /B
|
||||||
|
@ -20,23 +20,28 @@
|
|||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<PropertyGroup Label="Globals">
|
<PropertyGroup Label="Globals">
|
||||||
<ProjectGuid>__PROJECT_GUID__</ProjectGuid>
|
<ProjectGuid>__PROJECT_GUID__</ProjectGuid>
|
||||||
|
__UWP_PROPERTIES__
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
||||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||||
<PlatformToolset>__VCVEREXT__</PlatformToolset>
|
<PlatformToolset>__VCVEREXT__</PlatformToolset>
|
||||||
|
<CharacterSet>__VCCHARSET__</CharacterSet>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
||||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||||
<PlatformToolset>__VCVEREXT__</PlatformToolset>
|
<PlatformToolset>__VCVEREXT__</PlatformToolset>
|
||||||
|
<CharacterSet>__VCCHARSET__</CharacterSet>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
||||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||||
<PlatformToolset>__VCVEREXT__</PlatformToolset>
|
<PlatformToolset>__VCVEREXT__</PlatformToolset>
|
||||||
|
<CharacterSet>__VCCHARSET__</CharacterSet>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
||||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||||
<PlatformToolset>__VCVEREXT__</PlatformToolset>
|
<PlatformToolset>__VCVEREXT__</PlatformToolset>
|
||||||
|
<CharacterSet>__VCCHARSET__</CharacterSet>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||||
<ImportGroup Label="ExtensionSettings">
|
<ImportGroup Label="ExtensionSettings">
|
||||||
@ -96,7 +101,9 @@
|
|||||||
<WarningLevel>Level4</WarningLevel>
|
<WarningLevel>Level4</WarningLevel>
|
||||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||||
<DisableSpecificWarnings>%(DisableSpecificWarnings)</DisableSpecificWarnings>
|
<DisableSpecificWarnings>%(DisableSpecificWarnings)</DisableSpecificWarnings>
|
||||||
<FloatingPointModel>Precise</FloatingPointModel>__VCMPL32__
|
<FloatingPointModel>Precise</FloatingPointModel>
|
||||||
|
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
||||||
|
__VCMPL32__
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<ResourceCompile>
|
<ResourceCompile>
|
||||||
<AdditionalIncludeDirectories>..\..\..\inc;$(CSF_OPT_INC);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
<AdditionalIncludeDirectories>..\..\..\inc;$(CSF_OPT_INC);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||||
@ -111,6 +118,7 @@
|
|||||||
<ProgramDatabaseFile>.\..\..\..\win32\__VCVER__\bin\__TKNAM__.pdb</ProgramDatabaseFile>
|
<ProgramDatabaseFile>.\..\..\..\win32\__VCVER__\bin\__TKNAM__.pdb</ProgramDatabaseFile>
|
||||||
<SubSystem>Console</SubSystem>
|
<SubSystem>Console</SubSystem>
|
||||||
<ImportLibrary>..\..\..\win32\__VCVER__\lib\__TKNAM__.lib</ImportLibrary>
|
<ImportLibrary>..\..\..\win32\__VCVER__\lib\__TKNAM__.lib</ImportLibrary>
|
||||||
|
__UWP_GENERATE_METADATA__
|
||||||
</Link>
|
</Link>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||||
@ -141,7 +149,9 @@
|
|||||||
<CompileAs>Default</CompileAs>
|
<CompileAs>Default</CompileAs>
|
||||||
<DisableSpecificWarnings>%(DisableSpecificWarnings)</DisableSpecificWarnings>
|
<DisableSpecificWarnings>%(DisableSpecificWarnings)</DisableSpecificWarnings>
|
||||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||||
<FloatingPointModel>Precise</FloatingPointModel>__VCMPL32__
|
<FloatingPointModel>Precise</FloatingPointModel>
|
||||||
|
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
||||||
|
__VCMPL32__
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<ResourceCompile>
|
<ResourceCompile>
|
||||||
<AdditionalIncludeDirectories>..\..\..\inc;$(CSF_OPT_INC);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
<AdditionalIncludeDirectories>..\..\..\inc;$(CSF_OPT_INC);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||||
@ -156,6 +166,7 @@
|
|||||||
<ProgramDatabaseFile>..\..\..\win32\__VCVER__\bind\__TKNAM__.pdb</ProgramDatabaseFile>
|
<ProgramDatabaseFile>..\..\..\win32\__VCVER__\bind\__TKNAM__.pdb</ProgramDatabaseFile>
|
||||||
<SubSystem>Console</SubSystem>
|
<SubSystem>Console</SubSystem>
|
||||||
<ImportLibrary>..\..\..\win32\__VCVER__\libd\__TKNAM__.lib</ImportLibrary>
|
<ImportLibrary>..\..\..\win32\__VCVER__\libd\__TKNAM__.lib</ImportLibrary>
|
||||||
|
__UWP_GENERATE_METADATA__
|
||||||
</Link>
|
</Link>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||||
@ -185,7 +196,9 @@
|
|||||||
<WarningLevel>Level4</WarningLevel>
|
<WarningLevel>Level4</WarningLevel>
|
||||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||||
<DisableSpecificWarnings>%(DisableSpecificWarnings)</DisableSpecificWarnings>
|
<DisableSpecificWarnings>%(DisableSpecificWarnings)</DisableSpecificWarnings>
|
||||||
<FloatingPointModel>Precise</FloatingPointModel>__VCMPL64__
|
<FloatingPointModel>Precise</FloatingPointModel>
|
||||||
|
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
||||||
|
__VCMPL64__
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<ResourceCompile>
|
<ResourceCompile>
|
||||||
<AdditionalIncludeDirectories>..\..\..\inc;$(CSF_OPT_INC);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
<AdditionalIncludeDirectories>..\..\..\inc;$(CSF_OPT_INC);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||||
@ -200,6 +213,7 @@
|
|||||||
<ProgramDatabaseFile>.\..\..\..\win64\__VCVER__\bin\__TKNAM__.pdb</ProgramDatabaseFile>
|
<ProgramDatabaseFile>.\..\..\..\win64\__VCVER__\bin\__TKNAM__.pdb</ProgramDatabaseFile>
|
||||||
<SubSystem>Console</SubSystem>
|
<SubSystem>Console</SubSystem>
|
||||||
<ImportLibrary>..\..\..\win64\__VCVER__\lib\__TKNAM__.lib</ImportLibrary>
|
<ImportLibrary>..\..\..\win64\__VCVER__\lib\__TKNAM__.lib</ImportLibrary>
|
||||||
|
__UWP_GENERATE_METADATA__
|
||||||
</Link>
|
</Link>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||||
@ -230,7 +244,9 @@
|
|||||||
<CompileAs>Default</CompileAs>
|
<CompileAs>Default</CompileAs>
|
||||||
<DisableSpecificWarnings>%(DisableSpecificWarnings)</DisableSpecificWarnings>
|
<DisableSpecificWarnings>%(DisableSpecificWarnings)</DisableSpecificWarnings>
|
||||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||||
<FloatingPointModel>Precise</FloatingPointModel>__VCMPL64__
|
<FloatingPointModel>Precise</FloatingPointModel>
|
||||||
|
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
||||||
|
__VCMPL64__
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<ResourceCompile>
|
<ResourceCompile>
|
||||||
<AdditionalIncludeDirectories>..\..\..\inc;$(CSF_OPT_INC);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
<AdditionalIncludeDirectories>..\..\..\inc;$(CSF_OPT_INC);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||||
@ -245,6 +261,7 @@
|
|||||||
<ProgramDatabaseFile>..\..\..\win64\__VCVER__\bind\__TKNAM__.pdb</ProgramDatabaseFile>
|
<ProgramDatabaseFile>..\..\..\win64\__VCVER__\bind\__TKNAM__.pdb</ProgramDatabaseFile>
|
||||||
<SubSystem>Console</SubSystem>
|
<SubSystem>Console</SubSystem>
|
||||||
<ImportLibrary>..\..\..\win64\__VCVER__\libd\__TKNAM__.lib</ImportLibrary>
|
<ImportLibrary>..\..\..\win64\__VCVER__\libd\__TKNAM__.lib</ImportLibrary>
|
||||||
|
__UWP_GENERATE_METADATA__
|
||||||
</Link>
|
</Link>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user