forked from macroquest/eqlib
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheqlib.props
More file actions
39 lines (36 loc) · 2.37 KB
/
eqlib.props
File metadata and controls
39 lines (36 loc) · 2.37 KB
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
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Label="UserMacros">
<eqlibClientTarget>Live</eqlibClientTarget>
<eqlibClientDefine Condition="'$(eqlibClientTarget)' == 'Live'">LIVE</eqlibClientDefine>
<eqlibClientDefine Condition="'$(eqlibClientTarget)' == 'Test'">TEST</eqlibClientDefine>
<eqlibClientDefine Condition="'$(eqlibClientTarget)' == 'Emu'">EMULATOR</eqlibClientDefine>
<eqlibClientDefine Condition="'$(eqlibClientTarget)' == 'Beta'">BETA</eqlibClientDefine>
<eqlibClientDefine Condition="'$(eqlibClientTarget)' == ''"></eqlibClientDefine>
<eqlibResourceDefine Condition="'$(eqlibClientTarget)' == 'Live'">EQLIB_TARGET=\"Live\"</eqlibResourceDefine>
<eqlibResourceDefine Condition="'$(eqlibClientTarget)' == 'Test'">EQLIB_TARGET=\"Test\"</eqlibResourceDefine>
<eqlibResourceDefine Condition="'$(eqlibClientTarget)' == 'Emu'">EQLIB_TARGET=\"Emu\"</eqlibResourceDefine>
<eqlibResourceDefine Condition="'$(eqlibClientTarget)' == 'Beta'">EQLIB_TARGET=\"Beta\"</eqlibResourceDefine>
<eqlibResourceDefine Condition="'$(eqlibClientTarget)' == ''">EQLIB_TARGET=\"Unknown\"</eqlibResourceDefine>
<eqlibRoot>$(MSBuildThisFileDirectory)</eqlibRoot>
</PropertyGroup>
<ItemDefinitionGroup>
<ClCompile>
<AdditionalIncludeDirectories>$(eqlibRoot)include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<AdditionalOptions>/utf-8 %(AdditionalOptions)</AdditionalOptions>
</ClCompile>
<NASM>
<IncludePaths>$(eqlibRoot)include</IncludePaths>
<AdditionalDependencies>$(eqlibRoot)include\eqlib\AssemblyMacros.asm;%(AdditionalDependencies)</AdditionalDependencies>
<GenerateDebugInformation>true</GenerateDebugInformation>
<PreprocessorDefinitions Condition="'$(Platform)'=='x64'">ARCH_X64;$(eqlibClientDefine);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<PreprocessorDefinitions Condition="'$(Platform)'=='Win32'">ARCH_X86;$(eqlibClientDefine);%(PreprocessorDefinitions)</PreprocessorDefinitions>
</NASM>
</ItemDefinitionGroup>
<ImportGroup Label="ExtensionTargets">
<Import Project="$(eqlibRoot)tools\build_scripts\nasm\nasm.targets" />
</ImportGroup>
<ImportGroup Label="ExtensionSettings">
<Import Project="$(eqlibRoot)tools\build_scripts\nasm\nasm.props" />
</ImportGroup>
</Project>