File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -80,7 +80,6 @@ htmlreport/.tox/
8080htmlreport /MANIFEST
8181
8282# Backup files and stuff from patches
83- * .orig
8483* .rej
8584* ~
8685
@@ -108,3 +107,4 @@ man/manual.tex
108107# CLion
109108.idea
110109/.metadata /
110+ cmake- *
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ file(GLOB srcs "*.cpp")
33
44add_library (simplecpp_objs OBJECT ${srcs} ${hdrs} )
55if (CMAKE_CXX_COMPILER_ID MATCHES "Clang" )
6- add_library (simplecpp_objs_sanitized OBJECT ${srcs} ${hdrs} )
6+ add_library (simplecpp_objs_sanitized OBJECT EXCLUDE_FROM_ALL ${srcs} ${hdrs} )
77 target_compile_options (simplecpp_objs_sanitized PRIVATE -fsanitize=address )
88endif ()
99
Original file line number Diff line number Diff line change @@ -7,6 +7,6 @@ if (CMAKE_CXX_COMPILER_ID MATCHES "GNU")
77 target_compile_options (tinyxml_objs PRIVATE -Wno-suggest-attribute=format )
88endif ()
99if (CMAKE_CXX_COMPILER_ID MATCHES "Clang" )
10- add_library (tinyxml_objs_sanitized OBJECT ${srcs} ${hdrs} )
10+ add_library (tinyxml_objs_sanitized OBJECT EXCLUDE_FROM_ALL ${srcs} ${hdrs} )
1111 target_compile_options (tinyxml_objs_sanitized PRIVATE -fsanitize=address )
1212endif ()
Original file line number Diff line number Diff line change @@ -38,6 +38,6 @@ endif()
3838
3939add_library (lib_objs OBJECT ${srcs_lib} ${hdrs} )
4040if (CMAKE_CXX_COMPILER_ID MATCHES "Clang" )
41- add_library (lib_objs_sanitized OBJECT ${srcs_lib} ${hdrs} )
41+ add_library (lib_objs_sanitized OBJECT EXCLUDE_FROM_ALL ${srcs_lib} ${hdrs} )
4242 target_compile_options (lib_objs_sanitized PRIVATE -fsanitize=address )
4343endif ()
You can’t perform that action at this time.
0 commit comments