Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

VC2019 / Visual Studio project configs for v142 compiler toolset #2113

Closed
wants to merge 5 commits into from
Closed
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 4 additions & 0 deletions include/cinder/Filesystem.h
Expand Up @@ -37,7 +37,11 @@

namespace cinder {
#if defined( CINDER_UWP ) || ( defined( _MSC_VER ) && ( _MSC_VER >= 1900 ) )
#if ( _MSC_VER >= 1923 )
namespace fs = std::filesystem;
#else
namespace fs = std::experimental::filesystem;
#endif
} // namespace cinder
#else
namespace fs = boost::filesystem;
Expand Down
52 changes: 52 additions & 0 deletions proj/vc2019/cinder.sln
@@ -0,0 +1,52 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.25420.1
MinimumVisualStudioVersion = 10.0.40219.1
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cinder", "cinder.vcxproj", "{92B5BE70-DCAA-40E4-92D8-CC2B95AA28BE}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug_ANGLE|Win32 = Debug_ANGLE|Win32
Debug_ANGLE|x64 = Debug_ANGLE|x64
Debug_Shared|Win32 = Debug_Shared|Win32
Debug_Shared|x64 = Debug_Shared|x64
Debug|Win32 = Debug|Win32
Debug|x64 = Debug|x64
Release_ANGLE|Win32 = Release_ANGLE|Win32
Release_ANGLE|x64 = Release_ANGLE|x64
Release_Shared|Win32 = Release_Shared|Win32
Release_Shared|x64 = Release_Shared|x64
Release|Win32 = Release|Win32
Release|x64 = Release|x64
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{92B5BE70-DCAA-40E4-92D8-CC2B95AA28BE}.Debug_ANGLE|Win32.ActiveCfg = Debug_ANGLE|Win32
{92B5BE70-DCAA-40E4-92D8-CC2B95AA28BE}.Debug_ANGLE|Win32.Build.0 = Debug_ANGLE|Win32
{92B5BE70-DCAA-40E4-92D8-CC2B95AA28BE}.Debug_ANGLE|x64.ActiveCfg = Debug_ANGLE|x64
{92B5BE70-DCAA-40E4-92D8-CC2B95AA28BE}.Debug_ANGLE|x64.Build.0 = Debug_ANGLE|x64
{92B5BE70-DCAA-40E4-92D8-CC2B95AA28BE}.Debug_Shared|Win32.ActiveCfg = Debug_Shared|Win32
{92B5BE70-DCAA-40E4-92D8-CC2B95AA28BE}.Debug_Shared|Win32.Build.0 = Debug_Shared|Win32
{92B5BE70-DCAA-40E4-92D8-CC2B95AA28BE}.Debug_Shared|x64.ActiveCfg = Debug_Shared|x64
{92B5BE70-DCAA-40E4-92D8-CC2B95AA28BE}.Debug_Shared|x64.Build.0 = Debug_Shared|x64
{92B5BE70-DCAA-40E4-92D8-CC2B95AA28BE}.Debug|Win32.ActiveCfg = Debug|Win32
{92B5BE70-DCAA-40E4-92D8-CC2B95AA28BE}.Debug|Win32.Build.0 = Debug|Win32
{92B5BE70-DCAA-40E4-92D8-CC2B95AA28BE}.Debug|x64.ActiveCfg = Debug|x64
{92B5BE70-DCAA-40E4-92D8-CC2B95AA28BE}.Debug|x64.Build.0 = Debug|x64
{92B5BE70-DCAA-40E4-92D8-CC2B95AA28BE}.Release_ANGLE|Win32.ActiveCfg = Release_ANGLE|Win32
{92B5BE70-DCAA-40E4-92D8-CC2B95AA28BE}.Release_ANGLE|Win32.Build.0 = Release_ANGLE|Win32
{92B5BE70-DCAA-40E4-92D8-CC2B95AA28BE}.Release_ANGLE|x64.ActiveCfg = Release_ANGLE|x64
{92B5BE70-DCAA-40E4-92D8-CC2B95AA28BE}.Release_ANGLE|x64.Build.0 = Release_ANGLE|x64
{92B5BE70-DCAA-40E4-92D8-CC2B95AA28BE}.Release_Shared|Win32.ActiveCfg = Release_Shared|Win32
{92B5BE70-DCAA-40E4-92D8-CC2B95AA28BE}.Release_Shared|Win32.Build.0 = Release_Shared|Win32
{92B5BE70-DCAA-40E4-92D8-CC2B95AA28BE}.Release_Shared|x64.ActiveCfg = Release_Shared|x64
{92B5BE70-DCAA-40E4-92D8-CC2B95AA28BE}.Release_Shared|x64.Build.0 = Release_Shared|x64
{92B5BE70-DCAA-40E4-92D8-CC2B95AA28BE}.Release|Win32.ActiveCfg = Release|Win32
{92B5BE70-DCAA-40E4-92D8-CC2B95AA28BE}.Release|Win32.Build.0 = Release|Win32
{92B5BE70-DCAA-40E4-92D8-CC2B95AA28BE}.Release|x64.ActiveCfg = Release|x64
{92B5BE70-DCAA-40E4-92D8-CC2B95AA28BE}.Release|x64.Build.0 = Release|x64
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal
1,422 changes: 1,422 additions & 0 deletions proj/vc2019/cinder.vcxproj

Large diffs are not rendered by default.