libgoatvr

view libgoatvr_static.vcxproj @ 4:9ed0f1efd4cd

added post-build rules and install.bat
author John Tsiombikas <nuclear@member.fsf.org>
date Fri, 29 Aug 2014 07:37:19 +0300
parents 83292083070b
children 61feb3661397
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);USE_LIBOVR</PreprocessorDefinitions>
74 <DisableSpecificWarnings>4244;4996</DisableSpecificWarnings>
75 </ClCompile>
76 <Link>
77 <SubSystem>Windows</SubSystem>
78 <GenerateDebugInformation>true</GenerateDebugInformation>
79 </Link>
80 <PostBuildEvent>
81 <Command>mkdir usr\lib usr\bin usr\include
82 copy /y src\vr.h usr\include\goatvr.h
83 copy /y $(TargetPath) usr\lib\$(TargetFileName)</Command>
84 </PostBuildEvent>
85 </ItemDefinitionGroup>
86 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
87 <ClCompile>
88 <WarningLevel>Level3</WarningLevel>
89 <PrecompiledHeader>
90 </PrecompiledHeader>
91 <Optimization>MaxSpeed</Optimization>
92 <FunctionLevelLinking>true</FunctionLevelLinking>
93 <IntrinsicFunctions>true</IntrinsicFunctions>
94 <PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions);USE_LIBOVR</PreprocessorDefinitions>
95 <DisableSpecificWarnings>4244;4996</DisableSpecificWarnings>
96 </ClCompile>
97 <Link>
98 <SubSystem>Windows</SubSystem>
99 <GenerateDebugInformation>true</GenerateDebugInformation>
100 <EnableCOMDATFolding>true</EnableCOMDATFolding>
101 <OptimizeReferences>true</OptimizeReferences>
102 </Link>
103 <PostBuildEvent>
104 <Command>mkdir usr\lib usr\bin usr\include
105 copy /y src\vr.h usr\include\goatvr.h
106 copy /y $(TargetPath) usr\lib\$(TargetFileName)</Command>
107 </PostBuildEvent>
108 </ItemDefinitionGroup>
109 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
110 <ImportGroup Label="ExtensionTargets">
111 </ImportGroup>
112 </Project>