diff --git a/CMakeLists.txt b/CMakeLists.txt index 314507136c..cfdb2dd075 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -96,7 +96,9 @@ if (MSVC) endif () target_compile_options(libOpenSpace PUBLIC "/MP" "/wd4201" "/wd4127") - set_target_properties(OpenSpace PROPERTIES LINK_FLAGS "/NODEFAULTLIB:\"LIBCMTD.lib;LIBCMT.lib\"") + set_target_properties(OpenSpace PROPERTIES LINK_FLAGS + "/NODEFAULTLIB:LIBCMTD.lib /NODEFAULTLIB:LIBCMT.lib" + ) elseif (APPLE) target_compile_definitions(libOpenSpace PUBLIC "__APPLE__") diff --git a/src/engine/openspaceengine.cpp b/src/engine/openspaceengine.cpp index 686ca9c836..426cd568df 100644 --- a/src/engine/openspaceengine.cpp +++ b/src/engine/openspaceengine.cpp @@ -210,7 +210,7 @@ bool OpenSpaceEngine::create( LINFOC("OpenSpace Version", OPENSPACE_VERSION_MAJOR << "." << OPENSPACE_VERSION_MINOR << "." << - OPENSPACE_VERSION_REVISION << " (" << OPENSPACE_VERSION_STRING << ")"); + OPENSPACE_VERSION_PATCH << " (" << OPENSPACE_VERSION_STRING << ")"); // Create directories that doesn't exist auto tokens = FileSys.tokens();