mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-10-31 09:20:21 +00:00
16 lines
607 B
CMake
16 lines
607 B
CMake
# dynamic linking does this all the time
|
|
if (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
|
|
option(NO_LIBGCC "use libunwind+compiler-rt instead, must already be installed in mingw-w64 sysroot" OFF)
|
|
add_compile_options(-Wno-unused-command-line-argument -Wno-c++11-narrowing)
|
|
add_compile_options($<$<COMPILE_LANGUAGE:C>:-Wno-bad-function-cast>)
|
|
if (NO_LIBGCC)
|
|
find_library(UNWIND_LIB unwind)
|
|
link_libraries(${UNWIND_LIB})
|
|
find_library(PSAPI_LIB psapi)
|
|
link_libraries(${PSAPI_LIB})
|
|
endif(NO_LIBGCC)
|
|
else()
|
|
# found it. this is GNU only
|
|
add_compile_options(-Wno-cast-function-type)
|
|
endif()
|