goat3d

view goat3d.vcxproj @ 103:45a9d493e98c

fixed the input latency issue by calling QWidget::update() instead of QGLWidget::updateGL() update schedules an update instead of redrawing immediately.
author John Tsiombikas <nuclear@member.fsf.org>
date Sat, 12 Sep 2015 17:40:02 +0300
parents 3751aabbc5b3
children
line source
1 <?xml version="1.0" encoding="utf-8"?>
2 <Project DefaultTargets="Build" ToolsVersion="4.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="Debug|x64">
9 <Configuration>Debug</Configuration>
10 <Platform>x64</Platform>
11 </ProjectConfiguration>
12 <ProjectConfiguration Include="Release|Win32">
13 <Configuration>Release</Configuration>
14 <Platform>Win32</Platform>
15 </ProjectConfiguration>
16 <ProjectConfiguration Include="Release|x64">
17 <Configuration>Release</Configuration>
18 <Platform>x64</Platform>
19 </ProjectConfiguration>
20 </ItemGroup>
21 <ItemGroup>
22 <ClInclude Include="libs\openctm\internal.h" />
23 <ClInclude Include="libs\openctm\liblzma\Alloc.h" />
24 <ClInclude Include="libs\openctm\liblzma\LzFind.h" />
25 <ClInclude Include="libs\openctm\liblzma\LzHash.h" />
26 <ClInclude Include="libs\openctm\liblzma\LzmaDec.h" />
27 <ClInclude Include="libs\openctm\liblzma\LzmaEnc.h" />
28 <ClInclude Include="libs\openctm\liblzma\LzmaLib.h" />
29 <ClInclude Include="libs\openctm\liblzma\NameMangle.h" />
30 <ClInclude Include="libs\openctm\liblzma\Types.h" />
31 <ClInclude Include="libs\openctm\openctm.h" />
32 <ClInclude Include="libs\openctm\openctmpp.h" />
33 <ClInclude Include="libs\tinyxml2\tinyxml2.h" />
34 <ClInclude Include="src\aabox.h" />
35 <ClInclude Include="src\camera.h" />
36 <ClInclude Include="src\chunk.h" />
37 <ClInclude Include="src\goat3d.h" />
38 <ClInclude Include="src\goat3d_impl.h" />
39 <ClInclude Include="src\light.h" />
40 <ClInclude Include="src\log.h" />
41 <ClInclude Include="src\material.h" />
42 <ClInclude Include="src\mesh.h" />
43 <ClInclude Include="src\node.h" />
44 <ClInclude Include="src\object.h" />
45 <ClInclude Include="src\xform_node.h" />
46 </ItemGroup>
47 <ItemGroup>
48 <ClCompile Include="libs\openctm\compressMG1.c" />
49 <ClCompile Include="libs\openctm\compressMG2.c" />
50 <ClCompile Include="libs\openctm\compressRAW.c" />
51 <ClCompile Include="libs\openctm\liblzma\Alloc.c" />
52 <ClCompile Include="libs\openctm\liblzma\LzFind.c" />
53 <ClCompile Include="libs\openctm\liblzma\LzmaDec.c" />
54 <ClCompile Include="libs\openctm\liblzma\LzmaEnc.c" />
55 <ClCompile Include="libs\openctm\liblzma\LzmaLib.c" />
56 <ClCompile Include="libs\openctm\openctm.c" />
57 <ClCompile Include="libs\openctm\stream.c" />
58 <ClCompile Include="libs\tinyxml2\tinyxml2.cpp" />
59 <ClCompile Include="src\aabox.cc" />
60 <ClCompile Include="src\camera.cc" />
61 <ClCompile Include="src\chunk.cc" />
62 <ClCompile Include="src\goat3d.cc" />
63 <ClCompile Include="src\goat3d_read.cc" />
64 <ClCompile Include="src\goat3d_readxml.cc" />
65 <ClCompile Include="src\goat3d_write.cc" />
66 <ClCompile Include="src\goat3d_writexml.cc" />
67 <ClCompile Include="src\light.cc" />
68 <ClCompile Include="src\log.cc" />
69 <ClCompile Include="src\material.cc" />
70 <ClCompile Include="src\mesh.cc" />
71 <ClCompile Include="src\node.cc" />
72 <ClCompile Include="src\scene.cc" />
73 <ClCompile Include="src\xform_node.cc" />
74 </ItemGroup>
75 <PropertyGroup Label="Globals">
76 <ProjectGuid>{86BF319B-9222-4805-918D-DC1B9F77BCEF}</ProjectGuid>
77 <Keyword>Win32Proj</Keyword>
78 <RootNamespace>goat3d</RootNamespace>
79 </PropertyGroup>
80 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
81 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
82 <ConfigurationType>StaticLibrary</ConfigurationType>
83 <UseDebugLibraries>true</UseDebugLibraries>
84 <PlatformToolset>v110</PlatformToolset>
85 <CharacterSet>Unicode</CharacterSet>
86 </PropertyGroup>
87 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
88 <ConfigurationType>StaticLibrary</ConfigurationType>
89 <UseDebugLibraries>true</UseDebugLibraries>
90 <CharacterSet>Unicode</CharacterSet>
91 <PlatformToolset>v110</PlatformToolset>
92 </PropertyGroup>
93 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
94 <ConfigurationType>StaticLibrary</ConfigurationType>
95 <UseDebugLibraries>false</UseDebugLibraries>
96 <PlatformToolset>v110</PlatformToolset>
97 <WholeProgramOptimization>true</WholeProgramOptimization>
98 <CharacterSet>Unicode</CharacterSet>
99 </PropertyGroup>
100 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
101 <ConfigurationType>StaticLibrary</ConfigurationType>
102 <UseDebugLibraries>false</UseDebugLibraries>
103 <WholeProgramOptimization>true</WholeProgramOptimization>
104 <CharacterSet>Unicode</CharacterSet>
105 <PlatformToolset>v110</PlatformToolset>
106 </PropertyGroup>
107 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
108 <ImportGroup Label="ExtensionSettings">
109 </ImportGroup>
110 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
111 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
112 </ImportGroup>
113 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
114 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
115 </ImportGroup>
116 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
117 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
118 </ImportGroup>
119 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
120 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
121 </ImportGroup>
122 <PropertyGroup Label="UserMacros" />
123 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
124 <TargetName>$(ProjectName)-x64</TargetName>
125 </PropertyGroup>
126 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
127 <TargetName>$(ProjectName)-x64</TargetName>
128 </PropertyGroup>
129 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
130 <ClCompile>
131 <PrecompiledHeader>
132 </PrecompiledHeader>
133 <WarningLevel>Level3</WarningLevel>
134 <Optimization>Disabled</Optimization>
135 <PreprocessorDefinitions>WIN32;_DEBUG;_LIB;OPENCTM_STATIC;%(PreprocessorDefinitions)</PreprocessorDefinitions>
136 <DisableSpecificWarnings>4244;4305;4996</DisableSpecificWarnings>
137 <AdditionalIncludeDirectories>$(ProjectDir)\libs\openctm;$(ProjectDir)\libs\openctm\liblzma;$(ProjectDir)\libs\tinyxml2</AdditionalIncludeDirectories>
138 </ClCompile>
139 <Link>
140 <SubSystem>Windows</SubSystem>
141 <GenerateDebugInformation>true</GenerateDebugInformation>
142 </Link>
143 </ItemDefinitionGroup>
144 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
145 <ClCompile>
146 <PrecompiledHeader>
147 </PrecompiledHeader>
148 <WarningLevel>Level3</WarningLevel>
149 <Optimization>Disabled</Optimization>
150 <PreprocessorDefinitions>WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions);OPENCTM_STATIC;BUILD_MAXPLUGIN</PreprocessorDefinitions>
151 <DisableSpecificWarnings>4244;4305;4996</DisableSpecificWarnings>
152 <AdditionalIncludeDirectories>$(SolutionDir)\src;$(SolutionDir)\libs\openctm;$(SolutionDir)\libs\openctm\liblzma;$(SolutionDir)\libs\tinyxml2</AdditionalIncludeDirectories>
153 </ClCompile>
154 <Link>
155 <SubSystem>Windows</SubSystem>
156 <GenerateDebugInformation>true</GenerateDebugInformation>
157 </Link>
158 <Lib>
159 <AdditionalDependencies>
160 </AdditionalDependencies>
161 </Lib>
162 </ItemDefinitionGroup>
163 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
164 <ClCompile>
165 <WarningLevel>Level3</WarningLevel>
166 <PrecompiledHeader>
167 </PrecompiledHeader>
168 <Optimization>MaxSpeed</Optimization>
169 <FunctionLevelLinking>true</FunctionLevelLinking>
170 <IntrinsicFunctions>true</IntrinsicFunctions>
171 <PreprocessorDefinitions>WIN32;NDEBUG;_LIB;OPENCTM_STATIC;%(PreprocessorDefinitions)</PreprocessorDefinitions>
172 <DisableSpecificWarnings>4244;4305;4996</DisableSpecificWarnings>
173 <AdditionalIncludeDirectories>$(ProjectDir)\libs\openctm;$(ProjectDir)\libs\openctm\liblzma;$(ProjectDir)\libs\tinyxml2</AdditionalIncludeDirectories>
174 </ClCompile>
175 <Link>
176 <SubSystem>Windows</SubSystem>
177 <GenerateDebugInformation>true</GenerateDebugInformation>
178 <EnableCOMDATFolding>true</EnableCOMDATFolding>
179 <OptimizeReferences>true</OptimizeReferences>
180 </Link>
181 </ItemDefinitionGroup>
182 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
183 <ClCompile>
184 <WarningLevel>Level3</WarningLevel>
185 <PrecompiledHeader>
186 </PrecompiledHeader>
187 <Optimization>MaxSpeed</Optimization>
188 <FunctionLevelLinking>true</FunctionLevelLinking>
189 <IntrinsicFunctions>true</IntrinsicFunctions>
190 <PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions);OPENCTM_STATIC</PreprocessorDefinitions>
191 <DisableSpecificWarnings>4244;4305;4996</DisableSpecificWarnings>
192 <AdditionalIncludeDirectories>$(SolutionDir)\src;$(SolutionDir)\libs\openctm;$(SolutionDir)\libs\openctm\liblzma;$(SolutionDir)\libs\tinyxml2</AdditionalIncludeDirectories>
193 </ClCompile>
194 <Link>
195 <SubSystem>Windows</SubSystem>
196 <GenerateDebugInformation>true</GenerateDebugInformation>
197 <EnableCOMDATFolding>true</EnableCOMDATFolding>
198 <OptimizeReferences>true</OptimizeReferences>
199 </Link>
200 <Lib>
201 <AdditionalDependencies>
202 </AdditionalDependencies>
203 </Lib>
204 </ItemDefinitionGroup>
205 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
206 <ImportGroup Label="ExtensionTargets">
207 </ImportGroup>
208 </Project>