diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2024-02-12 10:03:07 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2024-02-12 10:03:07 +0100 |
commit | 3fe74769731ed31901a6bb486543509ce3720004 (patch) | |
tree | 9483b7478d56cd99ba8eb41dca3db3f5fefa4503 | |
parent | ef39c8f33e8374d5ef7dddff52a0d752b7181ed4 (diff) |
cmake: fix toolchain file
-rw-r--r-- | cmake/msvc.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/msvc.cmake b/cmake/msvc.cmake index 71a96540..b8442f03 100644 --- a/cmake/msvc.cmake +++ b/cmake/msvc.cmake @@ -146,7 +146,7 @@ elseif(opentrack-64bit) set(opentrack-simd "AVX") endif() -set(CMAKE_MSVC_RUNTIME_LIBRARY "MultiThreaded$<$<CONFIG:Debug>:Debug>Dll") +set(CMAKE_MSVC_RUNTIME_LIBRARY "MultiThreaded$<$<CONFIG:Debug>:Debug>DLL") add_link_options(-cgthreads:1) |