-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathincludes.props
22 lines (21 loc) · 1.17 KB
/
includes.props
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<OgreIncludeBase>$(MSBuildThisFileDirectory)\ogre\include\OGRE</OgreIncludeBase>
<OgreInclude>$(OgreIncludeBase);$(OgreIncludeBase)\Bites;$(OgreIncludeBase)\Overlay;$(OgreIncludeBase)\RTShaderSystem</OgreInclude>
<OgreLib>$(MSBuildThisFileDirectory)\ogre\lib</OgreLib>
<PyBindInclude>$(MSBuildThisFileDirectory)\pybind11\include\pybind11</PyBindInclude>
<SDLInclude>$(MSBuildThisFileDirectory)\sdl\SDL2-2.0.8\include</SDLInclude>
</PropertyGroup>
<ItemDefinitionGroup>
<ClCompile>
<AdditionalIncludeDirectories>$(OgreInclude);$(PyBindInclude);$(SDLInclude);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>_MT;_USRDLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<Link>
<AdditionalLibraryDirectories>$(OgreLib);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
</Link>
</ItemDefinitionGroup>
<Import Project="$(PythonProps)" Condition="$(PythonProps) != ''" />
<Import Project="python.props" Condition="$(PythonProps) == ''" />
</Project>