diff options
| author | Dennis Brentjes <d.brentjes@gmail.com> | 2016-10-17 16:43:10 +0200 |
|---|---|---|
| committer | Dennis Brentjes <d.brentjes@gmail.com> | 2016-10-17 16:43:10 +0200 |
| commit | 6ecb3fc69ddafc4aeb18397555ac7e9cb2f7a4d9 (patch) | |
| tree | d9180e7190573ec39d1cf574ae5815055e020c40 /libcmix-network | |
| parent | ba6da37569dde1ed7616c14d591134575e6a6879 (diff) | |
| download | cmix-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.
Diffstat (limited to 'libcmix-network')
| -rw-r--r-- | libcmix-network/CMakeLists.txt | 2 |
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 |
