-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDMEngine.vcxproj
40 lines (35 loc) · 1.58 KB
/
DMEngine.vcxproj
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
<?xml version="1.0" encoding="UTF-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<ProjectGuid>{41F15A80-1693-4F3A-8212-52952CD4AA52}</ProjectGuid>
<Keyword>MakeFileProj</Keyword>
</PropertyGroup>
<ItemGroup>
<ProjectConfiguration Include="Debug|Win32">
<Configuration>Debug</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
</ItemGroup>
<Import Project="$(VCTargetsPath)/Microsoft.cpp.Default.props"/>
<Import Project="$(VCTargetsPath)/Microsoft.Cpp.props"/>
<Import Project="$(UserRootDir)/Microsoft.Cpp.$(Platform).user.props"/>
<PropertyGroup>
<ConfigurationType>Makefile</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
<PlatformToolset>v120</PlatformToolset>
<BaseIntermediateOutputPath>Build/</BaseIntermediateOutputPath>
<NMakeOutput>DMEngine.exe</NMakeOutput>
<NMakeBuildCommandLine>nmake /F NMakefile build</NMakeBuildCommandLine>
<NMakeReBuildCommandline>nmake /F NMakefile rebuild</NMakeReBuildCommandline>
<NMakeCleanCommandline>nmake /F NMakefile clean</NMakeCleanCommandline>
<NMakePreprocessorDefinitions>WIN32;_DEBUG;$(NMakePreprocessorDefinitions);</NMakePreprocessorDefinitions>
<NMakeForcedIncludes>__DMEngine__.h</NMakeForcedIncludes>
<IncludePath>include;$(INCLUDE);$(IncludePath);</IncludePath>
<LibraryPath>$(LIB);$(LibraryPath);</LibraryPath>
</PropertyGroup>
<Import Project="$(VCTargetsPath)/Microsoft.Cpp.targets"/>
<ItemGroup>
<ClInclude Include="include/*.h"/>
<ClCompile Include="src/*.cpp"/>
</ItemGroup>
</Project>