aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDennis Brentjes <d.brentjes@gmail.com>2016-10-17 16:43:10 +0200
committerDennis Brentjes <d.brentjes@gmail.com>2016-10-17 16:43:10 +0200
commit6ecb3fc69ddafc4aeb18397555ac7e9cb2f7a4d9 (patch)
treed9180e7190573ec39d1cf574ae5815055e020c40
parentba6da37569dde1ed7616c14d591134575e6a6879 (diff)
downloadcmix-6ecb3fc69ddafc4aeb18397555ac7e9cb2f7a4d9.tar.gz
cmix-6ecb3fc69ddafc4aeb18397555ac7e9cb2f7a4d9.tar.bz2
cmix-6ecb3fc69ddafc4aeb18397555ac7e9cb2f7a4d9.zip
Fixes the build on clang
Fixes an issue that was allowing targets that depend on libcmix-network to be build not using the c++11 standard.
-rw-r--r--libcmix-network/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/libcmix-network/CMakeLists.txt b/libcmix-network/CMakeLists.txt
index ee0f6e9..b58cef1 100644
--- a/libcmix-network/CMakeLists.txt
+++ b/libcmix-network/CMakeLists.txt
@@ -14,7 +14,7 @@ add_library(cmix-network
)
target_compile_options(cmix-network
- PRIVATE "-std=c++11"
+ PUBLIC "-std=c++11"
)
target_include_directories(cmix-network