dbf-udg
changeset 15:2d1a9b5111f9 tip
added visual studio project
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Wed, 20 Feb 2013 06:03:31 +0200 |
parents | 5be16862d1b5 |
children | |
files | printblobs.sln printblobs.vcproj |
diffstat | 2 files changed, 297 insertions(+), 0 deletions(-) [+] |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/printblobs.sln Wed Feb 20 06:03:31 2013 +0200 1.3 @@ -0,0 +1,20 @@ 1.4 + 1.5 +Microsoft Visual Studio Solution File, Format Version 10.00 1.6 +# Visual C++ Express 2008 1.7 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "printblobs", "printblobs.vcproj", "{08C00C1F-60F8-4231-88AF-4DC50A2A1F1B}" 1.8 +EndProject 1.9 +Global 1.10 + GlobalSection(SolutionConfigurationPlatforms) = preSolution 1.11 + Debug|Win32 = Debug|Win32 1.12 + Release|Win32 = Release|Win32 1.13 + EndGlobalSection 1.14 + GlobalSection(ProjectConfigurationPlatforms) = postSolution 1.15 + {08C00C1F-60F8-4231-88AF-4DC50A2A1F1B}.Debug|Win32.ActiveCfg = Debug|Win32 1.16 + {08C00C1F-60F8-4231-88AF-4DC50A2A1F1B}.Debug|Win32.Build.0 = Debug|Win32 1.17 + {08C00C1F-60F8-4231-88AF-4DC50A2A1F1B}.Release|Win32.ActiveCfg = Release|Win32 1.18 + {08C00C1F-60F8-4231-88AF-4DC50A2A1F1B}.Release|Win32.Build.0 = Release|Win32 1.19 + EndGlobalSection 1.20 + GlobalSection(SolutionProperties) = preSolution 1.21 + HideSolutionNode = FALSE 1.22 + EndGlobalSection 1.23 +EndGlobal
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/printblobs.vcproj Wed Feb 20 06:03:31 2013 +0200 2.3 @@ -0,0 +1,277 @@ 2.4 +<?xml version="1.0" encoding="Windows-1252"?> 2.5 +<VisualStudioProject 2.6 + ProjectType="Visual C++" 2.7 + Version="9.00" 2.8 + Name="printblobs" 2.9 + ProjectGUID="{08C00C1F-60F8-4231-88AF-4DC50A2A1F1B}" 2.10 + RootNamespace="printblobs" 2.11 + Keyword="Win32Proj" 2.12 + TargetFrameworkVersion="196613" 2.13 + > 2.14 + <Platforms> 2.15 + <Platform 2.16 + Name="Win32" 2.17 + /> 2.18 + </Platforms> 2.19 + <ToolFiles> 2.20 + </ToolFiles> 2.21 + <Configurations> 2.22 + <Configuration 2.23 + Name="Debug|Win32" 2.24 + OutputDirectory="$(SolutionDir)$(ConfigurationName)" 2.25 + IntermediateDirectory="$(ConfigurationName)" 2.26 + ConfigurationType="1" 2.27 + CharacterSet="1" 2.28 + > 2.29 + <Tool 2.30 + Name="VCPreBuildEventTool" 2.31 + /> 2.32 + <Tool 2.33 + Name="VCCustomBuildTool" 2.34 + /> 2.35 + <Tool 2.36 + Name="VCXMLDataGeneratorTool" 2.37 + /> 2.38 + <Tool 2.39 + Name="VCWebServiceProxyGeneratorTool" 2.40 + /> 2.41 + <Tool 2.42 + Name="VCMIDLTool" 2.43 + /> 2.44 + <Tool 2.45 + Name="VCCLCompilerTool" 2.46 + Optimization="0" 2.47 + AdditionalIncludeDirectories=""$(ProjectDir)\libs\metasurf";"$(ProjectDir)\libs\dsys2"" 2.48 + PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE;_USE_MATH_DEFINES" 2.49 + MinimalRebuild="true" 2.50 + BasicRuntimeChecks="3" 2.51 + RuntimeLibrary="3" 2.52 + UsePrecompiledHeader="0" 2.53 + WarningLevel="3" 2.54 + DebugInformationFormat="4" 2.55 + /> 2.56 + <Tool 2.57 + Name="VCManagedResourceCompilerTool" 2.58 + /> 2.59 + <Tool 2.60 + Name="VCResourceCompilerTool" 2.61 + /> 2.62 + <Tool 2.63 + Name="VCPreLinkEventTool" 2.64 + /> 2.65 + <Tool 2.66 + Name="VCLinkerTool" 2.67 + AdditionalDependencies="glut32.lib glew32.lib" 2.68 + LinkIncremental="2" 2.69 + GenerateDebugInformation="true" 2.70 + SubSystem="1" 2.71 + TargetMachine="1" 2.72 + /> 2.73 + <Tool 2.74 + Name="VCALinkTool" 2.75 + /> 2.76 + <Tool 2.77 + Name="VCManifestTool" 2.78 + /> 2.79 + <Tool 2.80 + Name="VCXDCMakeTool" 2.81 + /> 2.82 + <Tool 2.83 + Name="VCBscMakeTool" 2.84 + /> 2.85 + <Tool 2.86 + Name="VCFxCopTool" 2.87 + /> 2.88 + <Tool 2.89 + Name="VCAppVerifierTool" 2.90 + /> 2.91 + <Tool 2.92 + Name="VCPostBuildEventTool" 2.93 + /> 2.94 + </Configuration> 2.95 + <Configuration 2.96 + Name="Release|Win32" 2.97 + OutputDirectory="$(SolutionDir)$(ConfigurationName)" 2.98 + IntermediateDirectory="$(ConfigurationName)" 2.99 + ConfigurationType="1" 2.100 + CharacterSet="1" 2.101 + WholeProgramOptimization="1" 2.102 + > 2.103 + <Tool 2.104 + Name="VCPreBuildEventTool" 2.105 + /> 2.106 + <Tool 2.107 + Name="VCCustomBuildTool" 2.108 + /> 2.109 + <Tool 2.110 + Name="VCXMLDataGeneratorTool" 2.111 + /> 2.112 + <Tool 2.113 + Name="VCWebServiceProxyGeneratorTool" 2.114 + /> 2.115 + <Tool 2.116 + Name="VCMIDLTool" 2.117 + /> 2.118 + <Tool 2.119 + Name="VCCLCompilerTool" 2.120 + Optimization="2" 2.121 + EnableIntrinsicFunctions="true" 2.122 + AdditionalIncludeDirectories=""$(ProjectDir)\libs\metasurf";"$(ProjectDir)\libs\dsys2"" 2.123 + PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE;_USE_MATH_DEFINES" 2.124 + RuntimeLibrary="2" 2.125 + EnableFunctionLevelLinking="true" 2.126 + UsePrecompiledHeader="0" 2.127 + WarningLevel="3" 2.128 + DebugInformationFormat="3" 2.129 + /> 2.130 + <Tool 2.131 + Name="VCManagedResourceCompilerTool" 2.132 + /> 2.133 + <Tool 2.134 + Name="VCResourceCompilerTool" 2.135 + /> 2.136 + <Tool 2.137 + Name="VCPreLinkEventTool" 2.138 + /> 2.139 + <Tool 2.140 + Name="VCLinkerTool" 2.141 + AdditionalDependencies="glut32.lib glew32.lib" 2.142 + LinkIncremental="1" 2.143 + GenerateDebugInformation="true" 2.144 + SubSystem="1" 2.145 + OptimizeReferences="2" 2.146 + EnableCOMDATFolding="2" 2.147 + TargetMachine="1" 2.148 + /> 2.149 + <Tool 2.150 + Name="VCALinkTool" 2.151 + /> 2.152 + <Tool 2.153 + Name="VCManifestTool" 2.154 + /> 2.155 + <Tool 2.156 + Name="VCXDCMakeTool" 2.157 + /> 2.158 + <Tool 2.159 + Name="VCBscMakeTool" 2.160 + /> 2.161 + <Tool 2.162 + Name="VCFxCopTool" 2.163 + /> 2.164 + <Tool 2.165 + Name="VCAppVerifierTool" 2.166 + /> 2.167 + <Tool 2.168 + Name="VCPostBuildEventTool" 2.169 + /> 2.170 + </Configuration> 2.171 + </Configurations> 2.172 + <References> 2.173 + </References> 2.174 + <Files> 2.175 + <Filter 2.176 + Name="src" 2.177 + Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx" 2.178 + UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}" 2.179 + > 2.180 + <File 2.181 + RelativePath=".\src\dither_matrix.h" 2.182 + > 2.183 + </File> 2.184 + <File 2.185 + RelativePath=".\src\mballs.cc" 2.186 + > 2.187 + </File> 2.188 + <File 2.189 + RelativePath=".\src\mballs.h" 2.190 + > 2.191 + </File> 2.192 + <File 2.193 + RelativePath=".\src\opengl.h" 2.194 + > 2.195 + </File> 2.196 + <File 2.197 + RelativePath=".\src\post.cc" 2.198 + > 2.199 + </File> 2.200 + <File 2.201 + RelativePath=".\src\post.h" 2.202 + > 2.203 + </File> 2.204 + <File 2.205 + RelativePath=".\src\sdr.c" 2.206 + > 2.207 + </File> 2.208 + <File 2.209 + RelativePath=".\src\sdr.h" 2.210 + > 2.211 + </File> 2.212 + <File 2.213 + RelativePath=".\src\udg.cc" 2.214 + > 2.215 + </File> 2.216 + <File 2.217 + RelativePath=".\src\udg.h" 2.218 + > 2.219 + </File> 2.220 + </Filter> 2.221 + <Filter 2.222 + Name="sdr" 2.223 + > 2.224 + <File 2.225 + RelativePath=".\sdr\dither.p.glsl" 2.226 + > 2.227 + </File> 2.228 + <File 2.229 + RelativePath=".\sdr\dither.v.glsl" 2.230 + > 2.231 + </File> 2.232 + <File 2.233 + RelativePath=".\sdr\phong.p.glsl" 2.234 + > 2.235 + </File> 2.236 + <File 2.237 + RelativePath=".\sdr\phong.v.glsl" 2.238 + > 2.239 + </File> 2.240 + </Filter> 2.241 + <Filter 2.242 + Name="libs" 2.243 + > 2.244 + <Filter 2.245 + Name="dsys2" 2.246 + > 2.247 + <File 2.248 + RelativePath=".\libs\dsys2\dsys.c" 2.249 + > 2.250 + </File> 2.251 + <File 2.252 + RelativePath=".\libs\dsys2\dsys.h" 2.253 + > 2.254 + </File> 2.255 + <File 2.256 + RelativePath=".\libs\dsys2\dsys_impl.h" 2.257 + > 2.258 + </File> 2.259 + </Filter> 2.260 + <Filter 2.261 + Name="metasurf" 2.262 + > 2.263 + <File 2.264 + RelativePath=".\libs\metasurf\mcubes.h" 2.265 + > 2.266 + </File> 2.267 + <File 2.268 + RelativePath=".\libs\metasurf\metasurf.c" 2.269 + > 2.270 + </File> 2.271 + <File 2.272 + RelativePath=".\libs\metasurf\metasurf.h" 2.273 + > 2.274 + </File> 2.275 + </Filter> 2.276 + </Filter> 2.277 + </Files> 2.278 + <Globals> 2.279 + </Globals> 2.280 +</VisualStudioProject>