[PATCH 5/6] cmake: use uppercase for defined macros

Lubomir I. Ivanov neolit123 at gmail.com
Sat Apr 18 05:22:13 PDT 2015


From: "Lubomir I. Ivanov" <neolit123 at gmail.com>

Signed-off-by: Lubomir I. Ivanov <neolit123 at gmail.com>
---
 CMakeLists.txt | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt
index ecf91f1..e0b397b 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -359,7 +359,7 @@ endif()
 
 # QTest based tests
 
-macro(test NAME FILE)
+macro(TEST NAME FILE)
 	add_executable(${NAME} tests/${FILE} ${SUBSURFACE_RESOURCES})
 	target_link_libraries(${NAME} subsurface_corelib ${QT_TEST_LIBRARIES} ${SUBSURFACE_LINK_LIBRARIES})
 	add_test(NAME ${NAME} COMMAND ${NAME})
@@ -369,10 +369,10 @@ enable_testing()
 add_definitions(-DSUBSURFACE_SOURCE="${CMAKE_SOURCE_DIR}")
 add_definitions(-g)
 if(NOT NO_TESTS)
-	test(TestUnitConversion testunitconversion.cpp)
-	test(TestProfile testprofile.cpp)
-	test(TestGpsCoords testgpscoords.cpp)
-	test(TestParse testparse.cpp)
+	TEST(TestUnitConversion testunitconversion.cpp)
+	TEST(TestProfile testprofile.cpp)
+	TEST(TestGpsCoords testgpscoords.cpp)
+	TEST(TestParse testparse.cpp)
 endif()
 
 if(NOT NO_DOCS)
-- 
1.7.11.msysgit.0



More information about the subsurface mailing list