Compare commits

..

2 Commits

Author SHA1 Message Date
doe300 7aab6a023d Merge branch 'shebang' into 'master' 1 month ago
eidheim 1f9e947a12 Fixed CI issue 2 months ago
  1. 4
      CMakeLists.txt

4
CMakeLists.txt

@ -40,7 +40,9 @@ if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
elseif(CMAKE_CXX_COMPILER_ID MATCHES "Clang")
add_compile_options("-Wno-#warnings")
add_compile_options(-Wthread-safety -Wno-deprecated -Wstring-conversion -Wliteral-conversion)
add_link_options(-Wl,-no_warn_duplicate_libraries)
if(APPLE)
add_link_options(-Wl,-no_warn_duplicate_libraries)
endif()
endif()
if(APPLE)

Loading…
Cancel
Save