From b81a27545657e0cb9fc71ec3a2d80ffa8c7131ae Mon Sep 17 00:00:00 2001 From: kts Date: Wed, 4 Feb 2015 16:28:22 -0800 Subject: [PATCH] Added working Visual Studio Express 2012 project file. --- build/vs/.gitignore | 196 ++++++++++++++++++++++++++++++++++++ build/vs/RtB.sln | 20 ++++ build/vs/vs.vcxproj | 93 +++++++++++++++++ build/vs/vs.vcxproj.filters | 33 ++++++ 4 files changed, 342 insertions(+) create mode 100644 build/vs/.gitignore create mode 100644 build/vs/RtB.sln create mode 100644 build/vs/vs.vcxproj create mode 100644 build/vs/vs.vcxproj.filters diff --git a/build/vs/.gitignore b/build/vs/.gitignore new file mode 100644 index 0000000..c33d7a1 --- /dev/null +++ b/build/vs/.gitignore @@ -0,0 +1,196 @@ +## Ignore Visual Studio temporary files, build results, and +## files generated by popular Visual Studio add-ons. + +# User-specific files +*.suo +*.user +*.userosscache +*.sln.docstates + +# User-specific files (MonoDevelop/Xamarin Studio) +*.userprefs + +# Build results +[Dd]ebug/ +[Dd]ebugPublic/ +[Rr]elease/ +[Rr]eleases/ +x64/ +x86/ +build/ +bld/ +[Bb]in/ +[Oo]bj/ + +# Roslyn cache directories +*.ide/ + +# MSTest test Results +[Tt]est[Rr]esult*/ +[Bb]uild[Ll]og.* + +#NUNIT +*.VisualState.xml +TestResult.xml + +# Build Results of an ATL Project +[Dd]ebugPS/ +[Rr]eleasePS/ +dlldata.c + +*_i.c +*_p.c +*_i.h +*.ilk +*.meta +*.obj +*.pch +*.pdb +*.pgc +*.pgd +*.rsp +*.sbr +*.tlb +*.tli +*.tlh +*.tmp +*.tmp_proj +*.log +*.vspscc +*.vssscc +.builds +*.pidb +*.svclog +*.scc + +# Chutzpah Test files +_Chutzpah* + +# Visual C++ cache files +ipch/ +*.aps +*.ncb +*.opensdf +*.sdf +*.cachefile + +# Visual Studio profiler +*.psess +*.vsp +*.vspx + +# TFS 2012 Local Workspace +$tf/ + +# Guidance Automation Toolkit +*.gpState + +# ReSharper is a .NET coding add-in +_ReSharper*/ +*.[Rr]e[Ss]harper +*.DotSettings.user + +# JustCode is a .NET coding addin-in +.JustCode + +# TeamCity is a build add-in +_TeamCity* + +# DotCover is a Code Coverage Tool +*.dotCover + +# NCrunch +_NCrunch_* +.*crunch*.local.xml + +# MightyMoose +*.mm.* +AutoTest.Net/ + +# Web workbench (sass) +.sass-cache/ + +# Installshield output folder +[Ee]xpress/ + +# DocProject is a documentation generator add-in +DocProject/buildhelp/ +DocProject/Help/*.HxT +DocProject/Help/*.HxC +DocProject/Help/*.hhc +DocProject/Help/*.hhk +DocProject/Help/*.hhp +DocProject/Help/Html2 +DocProject/Help/html + +# Click-Once directory +publish/ + +# Publish Web Output +*.[Pp]ublish.xml +*.azurePubxml +# TODO: Comment the next line if you want to checkin your web deploy settings +# but database connection strings (with potential passwords) will be unencrypted +*.pubxml +*.publishproj + +# NuGet Packages +*.nupkg +# The packages folder can be ignored because of Package Restore +**/packages/* +# except build/, which is used as an MSBuild target. +!**/packages/build/ +# Uncomment if necessary however generally it will be regenerated when needed +#!**/packages/repositories.config + +# Windows Azure Build Output +csx/ +*.build.csdef + +# Windows Store app package directory +AppPackages/ + +# Others +*.[Cc]ache +ClientBin/ +[Ss]tyle[Cc]op.* +~$* +*~ +*.dbmdl +*.dbproj.schemaview +*.pfx +*.publishsettings +node_modules/ +bower_components/ + +# RIA/Silverlight projects +Generated_Code/ + +# Backup & report files from converting an old project file +# to a newer Visual Studio version. Backup files are not needed, +# because we have git ;-) +_UpgradeReport_Files/ +Backup*/ +UpgradeLog*.XML +UpgradeLog*.htm + +# SQL Server files +*.mdf +*.ldf + +# Business Intelligence projects +*.rdl.data +*.bim.layout +*.bim_*.settings + +# Microsoft Fakes +FakesAssemblies/ + +# Node.js Tools for Visual Studio +.ntvs_analysis.dat + +# Visual Studio 6 build log +*.plg + +# Visual Studio 6 workspace options file +*.opt diff --git a/build/vs/RtB.sln b/build/vs/RtB.sln new file mode 100644 index 0000000..4feea57 --- /dev/null +++ b/build/vs/RtB.sln @@ -0,0 +1,20 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Express 2012 for Windows Desktop +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "RtB", "vs.vcxproj", "{7D19311F-85EC-447D-AE66-4E9160F01AB7}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Win32 = Debug|Win32 + Release|Win32 = Release|Win32 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {7D19311F-85EC-447D-AE66-4E9160F01AB7}.Debug|Win32.ActiveCfg = Debug|Win32 + {7D19311F-85EC-447D-AE66-4E9160F01AB7}.Debug|Win32.Build.0 = Debug|Win32 + {7D19311F-85EC-447D-AE66-4E9160F01AB7}.Release|Win32.ActiveCfg = Release|Win32 + {7D19311F-85EC-447D-AE66-4E9160F01AB7}.Release|Win32.Build.0 = Release|Win32 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/build/vs/vs.vcxproj b/build/vs/vs.vcxproj new file mode 100644 index 0000000..f750f45 --- /dev/null +++ b/build/vs/vs.vcxproj @@ -0,0 +1,93 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + + {7D19311F-85EC-447D-AE66-4E9160F01AB7} + vs + RtB + + + + Application + true + v110 + MultiByte + + + Application + false + v110 + true + MultiByte + + + + + + + + + + + + + C:\Dev\glew-1.11.0\include;C:\Dev\SDL2-2.0.3\include;$(IncludePath) + C:\Dev\glew-1.11.0\lib\Release\Win32;C:\Dev\SDL2-2.0.3\lib\x86;$(LibraryPath) + + + + Level3 + Disabled + true + MultiThreadedDLL + + + true + SDL2.lib;SDL2main.lib;opengl32.lib;glew32.lib;%(AdditionalDependencies) + Windows + + + xcopy /d /y "..\..\..\..\Dev\glew-1.11.0\bin\Release\Win32\glew32.dll" "$(OutDir)" +xcopy /d /y "..\..\..\..\Dev\SDL2-2.0.3\lib\x86\SDL2.dll" "$(OutDir)" + + + + + Level3 + MaxSpeed + true + true + true + + + true + true + true + + + + + + + + + + true + + + true + + + + + + \ No newline at end of file diff --git a/build/vs/vs.vcxproj.filters b/build/vs/vs.vcxproj.filters new file mode 100644 index 0000000..5a447cd --- /dev/null +++ b/build/vs/vs.vcxproj.filters @@ -0,0 +1,33 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hpp;hxx;hm;inl;inc;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms + + + {cf99fdc6-e0b4-4ff6-a517-63c2e5392c31} + + + + + Source Files + + + + + Build Copy + + + Build Copy + + + \ No newline at end of file