diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2017-05-06 10:37:47 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2017-05-10 11:19:22 +0200 |
commit | a4c33d15687de3bc9222c4f8c7dfea274935c756 (patch) | |
tree | 612dad896616277637a1cf2b25220a0ca80fe9da /compat | |
parent | 6f91be9eec668a2cb27f5065ac86ff1d55f1034b (diff) |
cmake: APPEND_STRING must have a space in front
Diffstat (limited to 'compat')
-rw-r--r-- | compat/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compat/CMakeLists.txt b/compat/CMakeLists.txt index 40850862..7655a223 100644 --- a/compat/CMakeLists.txt +++ b/compat/CMakeLists.txt @@ -5,5 +5,5 @@ if(NOT WIN32 AND NOT APPLE) endif() if(CMAKE_COMPILER_IS_GNUCXX) - set_property(SOURCE nan.cpp APPEND_STRING PROPERTY COMPILE_FLAGS "-fno-lto -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() |