diff options
Diffstat (limited to 'compat/CMakeLists.txt')
-rw-r--r-- | compat/CMakeLists.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/compat/CMakeLists.txt b/compat/CMakeLists.txt index 33cb02bd..7e5dd4cd 100644 --- a/compat/CMakeLists.txt +++ b/compat/CMakeLists.txt @@ -4,6 +4,10 @@ if(NOT WIN32 AND NOT APPLE) target_link_libraries(opentrack-compat rt) endif() +if(WIN32) + target_link_libraries(opentrack-compat winmm) +endif() + if(CMAKE_COMPILER_IS_GNUCXX) otr_prop(SOURCE nan.cpp COMPILE_FLAGS "-fno-lto -fno-fast-math -fno-finite-math-only -O0") endif() |