libgoatvr
diff 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 diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/libgoatvr_static.vcxproj Fri Aug 29 03:45:25 2014 +0300 1.3 @@ -0,0 +1,102 @@ 1.4 +<?xml version="1.0" encoding="utf-8"?> 1.5 +<Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> 1.6 + <ItemGroup Label="ProjectConfigurations"> 1.7 + <ProjectConfiguration Include="Debug|Win32"> 1.8 + <Configuration>Debug</Configuration> 1.9 + <Platform>Win32</Platform> 1.10 + </ProjectConfiguration> 1.11 + <ProjectConfiguration Include="Release|Win32"> 1.12 + <Configuration>Release</Configuration> 1.13 + <Platform>Win32</Platform> 1.14 + </ProjectConfiguration> 1.15 + </ItemGroup> 1.16 + <ItemGroup> 1.17 + <ClCompile Include="src\mathutil.c" /> 1.18 + <ClCompile Include="src\opt.c" /> 1.19 + <ClCompile Include="src\rbtree.c" /> 1.20 + <ClCompile Include="src\vr.c" /> 1.21 + <ClCompile Include="src\vr_libovr.c" /> 1.22 + <ClCompile Include="src\vr_modules.c" /> 1.23 + <ClCompile Include="src\vr_null.c" /> 1.24 + <ClCompile Include="src\vr_openhmd.c" /> 1.25 + </ItemGroup> 1.26 + <ItemGroup> 1.27 + <ClInclude Include="src\mathutil.h" /> 1.28 + <ClInclude Include="src\opt.h" /> 1.29 + <ClInclude Include="src\rbtree.h" /> 1.30 + <ClInclude Include="src\vr.h" /> 1.31 + <ClInclude Include="src\vr_impl.h" /> 1.32 + </ItemGroup> 1.33 + <PropertyGroup Label="Globals"> 1.34 + <ProjectGuid>{DF0FC238-A249-432C-9163-3778DDE78A62}</ProjectGuid> 1.35 + <Keyword>Win32Proj</Keyword> 1.36 + <RootNamespace>libgoatvr_static</RootNamespace> 1.37 + </PropertyGroup> 1.38 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> 1.39 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> 1.40 + <ConfigurationType>StaticLibrary</ConfigurationType> 1.41 + <UseDebugLibraries>true</UseDebugLibraries> 1.42 + <PlatformToolset>v120</PlatformToolset> 1.43 + <CharacterSet>MultiByte</CharacterSet> 1.44 + </PropertyGroup> 1.45 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> 1.46 + <ConfigurationType>StaticLibrary</ConfigurationType> 1.47 + <UseDebugLibraries>false</UseDebugLibraries> 1.48 + <PlatformToolset>v120</PlatformToolset> 1.49 + <WholeProgramOptimization>false</WholeProgramOptimization> 1.50 + <CharacterSet>MultiByte</CharacterSet> 1.51 + </PropertyGroup> 1.52 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> 1.53 + <ImportGroup Label="ExtensionSettings"> 1.54 + </ImportGroup> 1.55 + <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> 1.56 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 1.57 + </ImportGroup> 1.58 + <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> 1.59 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 1.60 + </ImportGroup> 1.61 + <PropertyGroup Label="UserMacros" /> 1.62 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> 1.63 + <IntDir>$(Configuration)_static\</IntDir> 1.64 + <OutDir>$(SolutionDir)$(Configuration)_static\</OutDir> 1.65 + </PropertyGroup> 1.66 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> 1.67 + <IntDir>$(Configuration)_static\</IntDir> 1.68 + <OutDir>$(SolutionDir)$(Configuration)_static\</OutDir> 1.69 + </PropertyGroup> 1.70 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> 1.71 + <ClCompile> 1.72 + <PrecompiledHeader> 1.73 + </PrecompiledHeader> 1.74 + <WarningLevel>Level3</WarningLevel> 1.75 + <Optimization>Disabled</Optimization> 1.76 + <PreprocessorDefinitions>WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> 1.77 + <DisableSpecificWarnings>4244;4996</DisableSpecificWarnings> 1.78 + </ClCompile> 1.79 + <Link> 1.80 + <SubSystem>Windows</SubSystem> 1.81 + <GenerateDebugInformation>true</GenerateDebugInformation> 1.82 + </Link> 1.83 + </ItemDefinitionGroup> 1.84 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> 1.85 + <ClCompile> 1.86 + <WarningLevel>Level3</WarningLevel> 1.87 + <PrecompiledHeader> 1.88 + </PrecompiledHeader> 1.89 + <Optimization>MaxSpeed</Optimization> 1.90 + <FunctionLevelLinking>true</FunctionLevelLinking> 1.91 + <IntrinsicFunctions>true</IntrinsicFunctions> 1.92 + <PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> 1.93 + <DisableSpecificWarnings>4244;4996</DisableSpecificWarnings> 1.94 + </ClCompile> 1.95 + <Link> 1.96 + <SubSystem>Windows</SubSystem> 1.97 + <GenerateDebugInformation>true</GenerateDebugInformation> 1.98 + <EnableCOMDATFolding>true</EnableCOMDATFolding> 1.99 + <OptimizeReferences>true</OptimizeReferences> 1.100 + </Link> 1.101 + </ItemDefinitionGroup> 1.102 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> 1.103 + <ImportGroup Label="ExtensionTargets"> 1.104 + </ImportGroup> 1.105 +</Project> 1.106 \ No newline at end of file