You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
378 B
13 lines
378 B
include(Compiler/GNU)
|
|
__compiler_gnu(CXX)
|
|
|
|
if (WIN32)
|
|
if(NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4.6)
|
|
set(CMAKE_CXX_COMPILE_OPTIONS_VISIBILITY_INLINES_HIDDEN "-fno-keep-inline-dllexport")
|
|
endif()
|
|
else()
|
|
if(NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4.2)
|
|
set(CMAKE_CXX_COMPILE_OPTIONS_VISIBILITY_INLINES_HIDDEN "-fvisibility-inlines-hidden")
|
|
endif()
|
|
endif()
|