summaryrefslogtreecommitdiffstats
path: root/cmake/Modules/DefineCompilerFlags.cmake
diff options
context:
space:
mode:
authorAndreas Schneider <asn@samba.org>2018-09-05 15:38:37 +0200
committerAndreas Schneider <asn@samba.org>2018-10-23 15:38:41 +0200
commit402f548051549edb764184f901e83ee7ece06b29 (patch)
tree12899fd022f2b218b4223c8795490f31fefb31a0 /cmake/Modules/DefineCompilerFlags.cmake
parent013687b2ccd6c8436e552e6ada2e7f73b8dfd7cd (diff)
downloadsocket_wrapper-402f548051549edb764184f901e83ee7ece06b29.tar.gz
socket_wrapper-402f548051549edb764184f901e83ee7ece06b29.tar.xz
socket_wrapper-402f548051549edb764184f901e83ee7ece06b29.zip
cmake: Move Compiler flags to new file
Signed-off-by: Andreas Schneider <asn@samba.org> Reviewed-by: Ralph Boehme <slow@samba.org>
Diffstat (limited to 'cmake/Modules/DefineCompilerFlags.cmake')
-rw-r--r--cmake/Modules/DefineCompilerFlags.cmake13
1 files changed, 13 insertions, 0 deletions
diff --git a/cmake/Modules/DefineCompilerFlags.cmake b/cmake/Modules/DefineCompilerFlags.cmake
new file mode 100644
index 0000000..4edb6d9
--- /dev/null
+++ b/cmake/Modules/DefineCompilerFlags.cmake
@@ -0,0 +1,13 @@
+if (UNIX AND NOT WIN32)
+ # Activate with: -DCMAKE_BUILD_TYPE=Profiling
+ set(CMAKE_C_FLAGS_PROFILING "-O0 -g -fprofile-arcs -ftest-coverage"
+ CACHE STRING "Flags used by the C compiler during PROFILING builds.")
+ set(CMAKE_CXX_FLAGS_PROFILING "-O0 -g -fprofile-arcs -ftest-coverage"
+ CACHE STRING "Flags used by the CXX compiler during PROFILING builds.")
+ set(CMAKE_SHARED_LINKER_FLAGS_PROFILING "-fprofile-arcs -ftest-coverage"
+ CACHE STRING "Flags used by the linker during the creation of shared libraries during PROFILING builds.")
+ set(CMAKE_MODULE_LINKER_FLAGS_PROFILING "-fprofile-arcs -ftest-coverage"
+ CACHE STRING "Flags used by the linker during the creation of shared libraries during PROFILING builds.")
+ set(CMAKE_EXEC_LINKER_FLAGS_PROFILING "-fprofile-arcs -ftest-coverage"
+ CACHE STRING "Flags used by the linker during PROFILING builds.")
+endif()