mirror of
https://github.com/morgan9e/FreeRDP
synced 2026-04-14 00:14:11 +09:00
* Split common stuff to reusable files * Disable INTERPROCEDURAL_OPTIMIZATION for SDL2/3 resource targets
12 lines
274 B
CMake
12 lines
274 B
CMake
include(CheckAndSetFlag)
|
|
|
|
option(EXPORT_ALL_SYMBOLS "Export all symbols form library" OFF)
|
|
|
|
if(EXPORT_ALL_SYMBOLS)
|
|
add_compile_definitions(EXPORT_ALL_SYMBOLS)
|
|
else()
|
|
message(STATUS "${} default symbol visibility: hidden")
|
|
|
|
checkandsetflag(-fvisibility=hidden)
|
|
endif()
|