File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ covhtml/
27
27
* .swp
28
28
.ninja_deps
29
29
.ninja_log
30
+ build_errors.txt
30
31
build.ninja
31
32
callgrind.out. *
32
33
callgrind_results.txt
@@ -37,6 +38,7 @@ MetalMockTests/MetalMockTests
37
38
ZenUnitCompileSpeedTests /ZenUnitCompileSpeedTests
38
39
ZenUnitExamples /ZenUnitExamples
39
40
ZenUnitLibraryTests /ZenUnitLibraryTests
41
+ ZenUnitUtilsAndAssertionTests /ZenUnitUtilsAndAssertionTests
40
42
41
43
# Windows
42
44
.vs /
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ if(UNIX)
11
11
if (CMAKE_CXX_COMPILER_ID STREQUAL "Clang" )
12
12
append (CMAKE_CXX_FLAGS "-Wno-gnu-zero-variadic-macro-arguments" )
13
13
elseif (CMAKE_CXX_COMPILER_ID STREQUAL "GNU" )
14
- append (CMAKE_CXX_FLAGS "-fuse-ld=lld" )
14
+ append (CMAKE_CXX_FLAGS "-fuse-ld=lld -Wno-dangling-reference " )
15
15
endif ()
16
16
if (FastLinuxDebugBuildMode)
17
17
replace(CMAKE_CXX_FLAGS_DEBUG "-g" "" )
@@ -66,4 +66,4 @@ if(UNIX AND NOT APPLE)
66
66
add_custom_target (clang-tidy COMMAND
67
67
find -name "*.cpp" -print0 | xargs -0 -n 1 -P ${numberOfThreads} -t clang-tidy -header-filter =.* -p ${CMAKE_BUILD_TYPE}
68
68
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR} VERBATIM USES_TERMINAL )
69
- endif ()
69
+ endif ()
You can’t perform that action at this time.
0 commit comments