-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild-defines.props
33 lines (33 loc) · 2.02 KB
/
build-defines.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
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ImportGroup Label="PropertySheets" />
<PropertyGroup Label="UserMacros">
<ModExportCFlags>_GLIB_EXTERN=__declspec(dllexport)extern</ModExportCFlags>
<PythonPath>c:\python27</PythonPath>
<PerlPath>c:\perl</PerlPath>
<UnpackedDir>$(SolutionDir)build\unpacked</UnpackedDir>
<UnpackedServerDir Condition="'$(Platform)'=='Win32'">$(UnpackedDir)\server\x86\$(Configuration)</UnpackedServerDir>
<UnpackedServerDir Condition="'$(Platform)'=='x64'">$(UnpackedDir)\server\x64\$(Configuration)</UnpackedServerDir>
<UnpackedClientDir Condition="'$(Platform)'=='Win32'">$(UnpackedDir)\client\x86\$(Configuration)</UnpackedClientDir>
<UnpackedClientDir Condition="'$(Platform)'=='x64'">$(UnpackedDir)\client\x64\$(Configuration)</UnpackedClientDir>
<GtkBinariesDir>c:\gtk-build\gtk</GtkBinariesDir>
<MkEnumsCmd>$(PerlPath)\bin\perl.exe $(GtkBinariesDir)\$(Platform)\$(Configuration)\bin\glib-mkenums</MkEnumsCmd>
<GLibCompileSchemas>$(GtkBinariesDir)\$(Platform)\$(Configuration)\bin\glib-compile-schemas.exe</GLibCompileSchemas>
<GLibIncludeDirectories>$(GtkBinariesDir)\$(Platform)\$(Configuration)\include\glib-2.0;$(GtkBinariesDir)\$(Platform)\$(Configuration)\include\gio-win32-2.0;$(GtkBinariesDir)\$(Platform)\$(Configuration)\include;$(GtkBinariesDir)\$(Platform)\$(Configuration)\lib\glib-2.0\include</GLibIncludeDirectories>
<GLibLibraryDirectories>$(GtkBinariesDir)\$(Platform)\$(Configuration)\lib</GLibLibraryDirectories>
</PropertyGroup>
<ItemGroup>
<BuildMacro Include="ModExportCFlags">
<Value>$(ModExportCFlags)</Value>
</BuildMacro>
<BuildMacro Include="PythonPath">
<Value>$(PythonPath)</Value>
</BuildMacro>
<BuildMacro Include="PerlPath">
<Value>$(PerlPath)</Value>
</BuildMacro>
<BuildMacro Include="MkEnumsCmd">
<Value>$(MkEnumsCmd)</Value>
</BuildMacro>
</ItemGroup>
</Project>