1<?xml version="1.0" encoding="utf-8"?> 2<!-- 3 * freetype.user.props 4 * 5 * 6 * You can specify custom options here without altering the project file. 7 * 8 * Multiple entries within each property are separated by semicolons (;). 9 * 10 * NOTE: If you want to link against zlib, libpng, bzip2 or harfbuzz, you 11 * should alter these values appropriately. 12 --> 13 14<Project ToolsVersion="4.0" 15 xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> 16 <PropertyGroup Label="Globals"> 17 18 <!-- 19 * `;'-separated list of symbols to #define 20 --> 21 <UserDefines></UserDefines> 22 23 <!-- 24 * path where your custom `ftoption.h' lives; 25 * this is searched BEFORE any other path 26 --> 27 <!-- <UserOptionDirectory>..\..\..\devel</UserOptionDirectory> --> 28 <UserOptionDirectory></UserOptionDirectory> 29 30 <!-- 31 * `;'-separated list of paths to additional include directories, 32 * e.g., where to find zlib.h, png.h, etc.; 33 * this is searched AFTER any other path 34 --> 35 <!-- <UserIncludeDirectories>..\..\..\..\zlib-1.2.8;..\..\..\..\libpng-1.6.12</UserIncludeDirectories> --> 36 <UserIncludeDirectories></UserIncludeDirectories> 37 38 <!-- 39 * `;'-separated list of paths to additional library directories, 40 * e.g., where to find zlib.lib, libpng.lib, etc. 41 --> 42 <!-- <UserLibraryDirectories>..\..\..\..\zlib-1.2.8;..\..\..\..\libpng-1.6.12</UserLibraryDirectories> --> 43 <UserLibraryDirectories></UserLibraryDirectories> 44 45 <!-- 46 * `;'-separated list of additional linker dependencies, 47 * e.g., zlib.lib, libpng.lib, etc. 48 --> 49 <!-- <UserDependencies>zlib.lib;libpng16.lib</UserDependencies> --> 50 <UserDependencies></UserDependencies> 51 52 </PropertyGroup> 53 54 <!-- 55 * Example configuration for x64 debug build only 56 --> 57 58 <!-- 59 <PropertyGroup Label="DebugProperties" 60 Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> 61 <UserDefines>ENABLE_DEBUG_HELPER;ENABLE_DEBUG_LOGGING</UserDefines> 62 <UserOptionDirectory>config\debug</UserOptionDirectory> 63 <UserIncludeDirectories>C:\mydebughelp\include</UserIncludeDirectories> 64 <UserLibraryDirectories>C:\mydebughelp\lib</UserLibraryDirectories> 65 <UserDependencies>dhelper64.lib</UserDependencies> 66 </PropertyGroup> 67 --> 68</Project> 69