From 3c058ce3d85c97365dde925b4543f1eab5037e05 Mon Sep 17 00:00:00 2001 From: Kearwood Gilbert Date: Thu, 5 Oct 2017 21:52:47 -0700 Subject: [PATCH] Setting up CMake for MSVC --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b7efb71..1977074 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,7 +4,7 @@ set(CMAKE_CXX_STANDARD_REQUIRED ON) set(CMAKE_CXX_EXTENSIONS OFF) if (WIN32) - set(CMAKE_GENERATOR_PLATFORM "Visual Studio 15 2017") + set(CMAKE_GENERATOR_PLATFORM "Visual Studio 15 2017 Win64") else() set(CMAKE_CXX_COMPILER "clang++") endif()