Commit bac7c902 authored by Dominik Charousset's avatar Dominik Charousset

Silence CMP0063 warning

parent 42a1d476
...@@ -64,6 +64,9 @@ if(BUILD_SHARED_LIBS) ...@@ -64,6 +64,9 @@ if(BUILD_SHARED_LIBS)
set(LINK_TYPE "shared") set(LINK_TYPE "shared")
set(CMAKE_CXX_VISIBILITY_PRESET hidden) set(CMAKE_CXX_VISIBILITY_PRESET hidden)
set(CMAKE_VISIBILITY_INLINES_HIDDEN yes) set(CMAKE_VISIBILITY_INLINES_HIDDEN yes)
if(POLICY CMP0063)
cmake_policy(SET CMP0063 NEW)
endif()
else() else()
set(CAF_STATIC_BUILD yes) set(CAF_STATIC_BUILD yes)
set(LINK_TYPE "static") set(LINK_TYPE "static")
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment