libgoatvr

view libgoatvr_static.vcxproj @ 0:ded3d0a74e19

initial commit
author John Tsiombikas <nuclear@member.fsf.org>
date Fri, 29 Aug 2014 03:45:25 +0300
parents
children 83292083070b
line source
1 <?xml version="1.0" encoding="utf-8"?>
2 <Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3 <ItemGroup Label="ProjectConfigurations">
4 <ProjectConfiguration Include="Debug|Win32">
5 <Configuration>Debug</Configuration>
6 <Platform>Win32</Platform>
7 </ProjectConfiguration>
8 <ProjectConfiguration Include="Release|Win32">
9 <Configuration>Release</Configuration>
10 <Platform>Win32</Platform>
11 </ProjectConfiguration>
12 </ItemGroup>
13 <ItemGroup>
14 <ClCompile Include="src\mathutil.c" />
15 <ClCompile Include="src\opt.c" />
16 <ClCompile Include="src\rbtree.c" />
17 <ClCompile Include="src\vr.c" />
18 <ClCompile Include="src\vr_libovr.c" />
19 <ClCompile Include="src\vr_modules.c" />
20 <ClCompile Include="src\vr_null.c" />
21 <ClCompile Include="src\vr_openhmd.c" />
22 </ItemGroup>
23 <ItemGroup>
24 <ClInclude Include="src\mathutil.h" />
25 <ClInclude Include="src\opt.h" />
26 <ClInclude Include="src\rbtree.h" />
27 <ClInclude Include="src\vr.h" />
28 <ClInclude Include="src\vr_impl.h" />
29 </ItemGroup>
30 <PropertyGroup Label="Globals">
31 <ProjectGuid>{DF0FC238-A249-432C-9163-3778DDE78A62}</ProjectGuid>
32 <Keyword>Win32Proj</Keyword>
33 <RootNamespace>libgoatvr_static</RootNamespace>
34 </PropertyGroup>
35 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
36 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
37 <ConfigurationType>StaticLibrary</ConfigurationType>
38 <UseDebugLibraries>true</UseDebugLibraries>
39 <PlatformToolset>v120</PlatformToolset>
40 <CharacterSet>MultiByte</CharacterSet>
41 </PropertyGroup>
42 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
43 <ConfigurationType>StaticLibrary</ConfigurationType>
44 <UseDebugLibraries>false</UseDebugLibraries>
45 <PlatformToolset>v120</PlatformToolset>
46 <WholeProgramOptimization>false</WholeProgramOptimization>
47 <CharacterSet>MultiByte</CharacterSet>
48 </PropertyGroup>
49 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
50 <ImportGroup Label="ExtensionSettings">
51 </ImportGroup>
52 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
53 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
54 </ImportGroup>
55 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
56 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
57 </ImportGroup>
58 <PropertyGroup Label="UserMacros" />
59 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
60 <IntDir>$(Configuration)_static\</IntDir>
61 <OutDir>$(SolutionDir)$(Configuration)_static\</OutDir>
62 </PropertyGroup>
63 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
64 <IntDir>$(Configuration)_static\</IntDir>
65 <OutDir>$(SolutionDir)$(Configuration)_static\</OutDir>
66 </PropertyGroup>
67 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
68 <ClCompile>
69 <PrecompiledHeader>
70 </PrecompiledHeader>
71 <WarningLevel>Level3</WarningLevel>
72 <Optimization>Disabled</Optimization>
73 <PreprocessorDefinitions>WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
74 <DisableSpecificWarnings>4244;4996</DisableSpecificWarnings>
75 </ClCompile>
76 <Link>
77 <SubSystem>Windows</SubSystem>
78 <GenerateDebugInformation>true</GenerateDebugInformation>
79 </Link>
80 </ItemDefinitionGroup>
81 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
82 <ClCompile>
83 <WarningLevel>Level3</WarningLevel>
84 <PrecompiledHeader>
85 </PrecompiledHeader>
86 <Optimization>MaxSpeed</Optimization>
87 <FunctionLevelLinking>true</FunctionLevelLinking>
88 <IntrinsicFunctions>true</IntrinsicFunctions>
89 <PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
90 <DisableSpecificWarnings>4244;4996</DisableSpecificWarnings>
91 </ClCompile>
92 <Link>
93 <SubSystem>Windows</SubSystem>
94 <GenerateDebugInformation>true</GenerateDebugInformation>
95 <EnableCOMDATFolding>true</EnableCOMDATFolding>
96 <OptimizeReferences>true</OptimizeReferences>
97 </Link>
98 </ItemDefinitionGroup>
99 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
100 <ImportGroup Label="ExtensionTargets">
101 </ImportGroup>
102 </Project>