GPUOpen-Archive / Anvil

Anvil is a cross-platform framework for Vulkan
MIT License
594 stars 62 forks source link

Fix cmake build on msvc #113

Closed theswiftfox closed 5 years ago

theswiftfox commented 5 years ago

Fixed an issue with using wrong braces for cmake variables: changed line 255 in root CMakeLists.txt from set(CMAKE_CXX_FLAGS "$(CMAKE_CXX_FLAGS) /EHsc /MP") to set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /EHsc /MP")

DominikWitczakAMD commented 5 years ago

Good catch, many thanks! Really appreciate user contributions :-)

theswiftfox commented 5 years ago

My thanks for the quick merge and glad to help ;)