mirror of https://github.com/OpenMW/openmw.git
cmake: Compiler-specific whole-archive macro
parent
93fe84aea8
commit
8737453498
@ -0,0 +1,10 @@
|
||||
macro (get_whole_archive_options OUT_VAR)
|
||||
# We use --whole-archive because OSG plugins use registration.
|
||||
if (CMAKE_CXX_COMPILER_ID STREQUAL "Clang" OR CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
|
||||
set(${OUT_VAR} -Wl,--whole-archive ${ARGN} -Wl,--no-whole-archive)
|
||||
elseif (CMAKE_CXX_COMPILER_ID STREQUAL "AppleClang")
|
||||
set(${OUT_VAR} -Wl,-all_load ${ARGN} -Wl,-noall_load)
|
||||
else ()
|
||||
message(FATAL_ERROR "get_whole_archive_options not implemented for CMAKE_CXX_COMPILER_ID ${CMAKE_CXX_COMPILER_ID}")
|
||||
endif()
|
||||
endmacro (whole_archive_options)
|
Loading…
Reference in New Issue