"examples/git@developer.sourcefind.cn:OpenDAS/apex.git" did not exist on "2f0bf5946c45a07e23842737a8742d672d022942"
Commit 67d22c48 authored by Davis King's avatar Davis King
Browse files

disable annoying warning

parent a0d492ae
...@@ -168,6 +168,9 @@ ADD_EXECUTABLE(${target_name} main.cpp tester.cpp ${tests}) ...@@ -168,6 +168,9 @@ ADD_EXECUTABLE(${target_name} main.cpp tester.cpp ${tests})
# Turn on all warnings when using gcc. # Turn on all warnings when using gcc.
if (CMAKE_COMPILER_IS_GNUCXX) if (CMAKE_COMPILER_IS_GNUCXX)
add_definitions("-W -Wall") add_definitions("-W -Wall")
# I don't care about unused testing functions though. I like to keep them
# around. Don't warn about it.
add_definitions("-Wno-unused-function")
endif() endif()
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment