This repository has been archived by the owner on Dec 20, 2022. It is now read-only.
forked from onox/OpenRTI
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathOpenRTI.props
71 lines (71 loc) · 3.17 KB
/
OpenRTI.props
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Label="UserMacros">
<BuildType>Local</BuildType>
<!-- <BuildType>CANoe</BuildType> -->
</PropertyGroup>
<PropertyGroup Label="UserMacros" Condition="'$(Platform)'=='x64'">
<OBJ_DIR>$(SolutionDir)Obj64</OBJ_DIR>
<SOURCE_DIR>.\</SOURCE_DIR>
</PropertyGroup>
<PropertyGroup Label="UserMacros" Condition="'$(Platform)'=='Win32'">
<OBJ_DIR>$(SolutionDir)Obj32</OBJ_DIR>
<SOURCE_DIR>.\</SOURCE_DIR>
</PropertyGroup>
<PropertyGroup Label="UserMacros" Condition="'$(BuildType)'=='CANoe'">
<BIN_DIR>$(SolutionDir)..\..\bin</BIN_DIR>
</PropertyGroup>
<PropertyGroup Label="UserMacros" Condition="'$(BuildType)'=='Local'">
<BIN_DIR>$(SolutionDir)bin</BIN_DIR>
</PropertyGroup>
<PropertyGroup>
<_ProjectFileVersion>10.0.40219.1</_ProjectFileVersion>
<_PropertySheetDisplayName>OpenRTI</_PropertySheetDisplayName>
<IntDir>$(OBJ_DIR)\$(ProjectName)\$(Configuration)\</IntDir>
</PropertyGroup>
<ItemDefinitionGroup>
<ClCompile>
<AdditionalOptions>%(AdditionalOptions) /bigobj /Zm160 /d2Zi+</AdditionalOptions>
<AssemblerListingLocation>$(IntDir)</AssemblerListingLocation>
<CompileAs>CompileAsCpp</CompileAs>
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
<EnableEnhancedInstructionSet>NotSet</EnableEnhancedInstructionSet>
<ExceptionHandling>Sync</ExceptionHandling>
<ForceConformanceInForLoopScope>true</ForceConformanceInForLoopScope>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
<PrecompiledHeader>NotUsing</PrecompiledHeader>
<PreprocessorDefinitions>WIN32;_WINDOWS;TIME64;_CRT_SECURE_NO_WARNINGS;NOMINMAX;_WIN32_WINNT=_WIN32_WINNT_WIN7;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<ProgramDataBaseFileName>$(IntDir)</ProgramDataBaseFileName>
<RuntimeTypeInfo>true</RuntimeTypeInfo>
<SuppressStartupBanner>true</SuppressStartupBanner>
<TreatWarningAsError>true</TreatWarningAsError>
<WarningLevel>Level4</WarningLevel>
</ClCompile>
<Link>
<AdditionalDependencies>delayimp.lib;%(AdditionalDependencies)</AdditionalDependencies>
<SuppressStartupBanner>true</SuppressStartupBanner>
<GenerateDebugInformation>DebugFull</GenerateDebugInformation>
<ImportLibrary>$(TargetDir)$(TargetName).lib</ImportLibrary>
<OutputFile>$(TargetPath)</OutputFile>
<SubSystem>Console</SubSystem>
<AdditionalOptions>/pdbcompress %(AdditionalOptions)</AdditionalOptions>
</Link>
<ResourceCompile>
<AdditionalIncludeDirectories>$(SOURCE_DIR);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
</ResourceCompile>
</ItemDefinitionGroup>
<ItemGroup>
<BuildMacro Include="BuildType">
<Value>$(BuildType)</Value>
</BuildMacro>
<BuildMacro Include="BIN_DIR">
<Value>$(BIN_DIR)</Value>
</BuildMacro>
<BuildMacro Include="OBJ_DIR">
<Value>$(OBJ_DIR)</Value>
</BuildMacro>
<BuildMacro Include="SOURCE_DIR">
<Value>$(SOURCE_DIR)</Value>
</BuildMacro>
</ItemGroup>
</Project>