diff options
Diffstat (limited to 'conf.d/cmake')
-rw-r--r-- | conf.d/cmake/config.cmake | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/conf.d/cmake/config.cmake b/conf.d/cmake/config.cmake index 7b335e3d..05f8468b 100644 --- a/conf.d/cmake/config.cmake +++ b/conf.d/cmake/config.cmake @@ -70,10 +70,8 @@ set (PKG_REQUIRED_LIST # ----------------------------- add_compile_options(-D_REENTRANT) add_compile_options(-DPB_FIELD_16BIT) - -# LANG Specific compile flags set for all build types -set(CMAKE_C_FLAGS "") -set(CMAKE_CXX_FLAGS "-std=c++11 -pthread") +add_compile_options($<$<COMPILE_LANGUAGE:CXX>:-std=c++11>) +add_compile_options($<$<COMPILE_LANGUAGE:CXX>:-pthread>) # Print a helper message when every thing is finished # ---------------------------------------------------- |