Skip to content

Commit 5fa854b

Browse files
committed
Fixed props
1 parent 56c5de6 commit 5fa854b

File tree

5 files changed

+35
-0
lines changed

5 files changed

+35
-0
lines changed

_prj_msvc/props/umba_common.props

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
<!-- umba_msvcver.props must be included first -->
44

5+
<Import Project=".\umba_stdcpp14.props" />
6+
57
<PropertyGroup>
68

79
<!-- UMBA_PLATFORM_CONFIG_ROOT: x86\Release -->
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2+
3+
<ItemDefinitionGroup>
4+
<ClCompile>
5+
<LanguageStandard>stdcpp14</LanguageStandard>
6+
</ClCompile>
7+
</ItemDefinitionGroup>
8+
9+
</Project>
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2+
3+
<ItemDefinitionGroup>
4+
<ClCompile>
5+
<LanguageStandard>stdcpp17</LanguageStandard>
6+
</ClCompile>
7+
</ItemDefinitionGroup>
8+
9+
</Project>
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2+
3+
<ItemDefinitionGroup>
4+
<ClCompile>
5+
<LanguageStandard>stdcpp20</LanguageStandard>
6+
</ClCompile>
7+
</ItemDefinitionGroup>
8+
9+
</Project>

_prj_msvc/umba_prjdefs.props

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
11
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
22

3+
<Import Project=".\props\umba_stdcpp17.props" />
4+
35
<ItemDefinitionGroup>
46
<ClCompile>
57
<PreprocessorDefinitions>YAML_CPP_STATIC_DEFINE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
68
</ClCompile>
9+
<Link>
10+
<AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
11+
<AdditionalDependencies>%(AdditionalDependencies)</AdditionalDependencies>
12+
</Link>
713
</ItemDefinitionGroup>
814

915
</Project>

0 commit comments

Comments
 (0)