Commit 58c0f433 authored by Thibault Hallouin's avatar Thibault Hallouin
Browse files

hide symbols of inline functions

Showing with 13 additions and 0 deletions
+13 -0
...@@ -30,6 +30,12 @@ add_library( ...@@ -30,6 +30,12 @@ add_library(
add_library(EvalHyd::evalhyd ALIAS evalhyd) add_library(EvalHyd::evalhyd ALIAS evalhyd)
set_target_properties(
evalhyd
PROPERTIES
VISIBILITY_INLINES_HIDDEN ON
)
target_include_directories( target_include_directories(
evalhyd evalhyd
PUBLIC PUBLIC
......
...@@ -15,6 +15,13 @@ add_executable( ...@@ -15,6 +15,13 @@ add_executable(
test_uncertainty.cpp test_uncertainty.cpp
) )
set_target_properties(
evalhyd_tests
PROPERTIES
VISIBILITY_INLINES_HIDDEN ON
CXX_VISIBILITY_PRESET hidden
)
target_include_directories( target_include_directories(
evalhyd_tests evalhyd_tests
PRIVATE PRIVATE
......
Supports Markdown
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