diff options
Diffstat (limited to 'compat')
-rw-r--r-- | compat/CMakeLists.txt | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/compat/CMakeLists.txt b/compat/CMakeLists.txt index 2bbb496c..7404bdfb 100644 --- a/compat/CMakeLists.txt +++ b/compat/CMakeLists.txt @@ -1,8 +1,9 @@ opentrack_boilerplate(opentrack-compat NO-COMPAT BIN) + if(NOT WIN32 AND NOT APPLE) target_link_libraries(opentrack-compat rt) endif() + if(CMAKE_COMPILER_IS_GNUCXX) - set_source_files_properties(nan.cpp PROPERTIES - COMPILE_FLAGS "-fno-fast-math -fno-finite-math-only -O0") + set_property(SOURCE nan.cpp APPEND_STRING PROPERTY COMPILE_FLAGS "-fno-lto -fno-fast-math -fno-finite-math-only -O0") endif() |