diff --git a/cpp/CMakeLists.txt b/cpp/CMakeLists.txt index 704e58ff..5baa8891 100644 --- a/cpp/CMakeLists.txt +++ b/cpp/CMakeLists.txt @@ -20,6 +20,10 @@ set(CMAKE_POSITION_INDEPENDENT_CODE ON) set(CMAKE_CXX_STANDARD 17) set(CMAKE_CXX_STANDARD_REQUIRED ON) +if(MSVC) + add_compile_options("/MP") +endif() + ############################## # External Projects ##############################