Skip to content

Commit 42612ee

Browse files
authored
Merge pull request #38 from ethz-asl/fix/cmakeFatalErrorWithComma
Removed ','-suffix from some cmake FATAL_ERROR messages.
2 parents 230d84c + ffefe37 commit 42612ee

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

cuckoo_time_translator/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ set (CMAKE_CXX_FLAGS "-Wall -Wextra -Wno-unknown-pragmas ${CMAKE_CXX_FLAGS}")
1111
# enable C++11 support.
1212
if (CMAKE_VERSION VERSION_LESS "3.1")
1313
if (MSVC)
14-
message(FATAL_ERROR, "CMake version 3.1 or later is required to compiler ${PROJECT_NAME} with Microsoft Visual C++")
14+
message(FATAL_ERROR "CMake version 3.1 or later is required to compiler ${PROJECT_NAME} with Microsoft Visual C++")
1515
endif ()
1616
if (CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
1717
set (CMAKE_CXX_FLAGS "-std=c++0x ${CMAKE_CXX_FLAGS}")

cuckoo_time_translator_algorithms/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ set (CMAKE_CXX_FLAGS "-Wall -Wextra -Wno-unknown-pragmas ${CMAKE_CXX_FLAGS}")
1818
# enable C++11 support.
1919
if (CMAKE_VERSION VERSION_LESS "3.1")
2020
if (MSVC)
21-
message(FATAL_ERROR, "CMake version 3.1 or later is required to compiler ${PROJECT_NAME} with Microsoft Visual C++")
21+
message(FATAL_ERROR "CMake version 3.1 or later is required to compiler ${PROJECT_NAME} with Microsoft Visual C++")
2222
endif ()
2323
if (CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
2424
set (CMAKE_CXX_FLAGS "-std=c++0x ${CMAKE_CXX_FLAGS}")

cuckoo_time_translator_python/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ set (CMAKE_CXX_FLAGS "-Wall -Wextra -Wno-unknown-pragmas ${CMAKE_CXX_FLAGS}")
1111
# enable C++11 support.
1212
if (CMAKE_VERSION VERSION_LESS "3.1")
1313
if (MSVC)
14-
message(FATAL_ERROR, "CMake version 3.1 or later is required to compiler ${PROJECT_NAME} with Microsoft Visual C++")
14+
message(FATAL_ERROR "CMake version 3.1 or later is required to compiler ${PROJECT_NAME} with Microsoft Visual C++")
1515
endif ()
1616
if (CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
1717
set (CMAKE_CXX_FLAGS "-std=c++0x ${CMAKE_CXX_FLAGS}")

0 commit comments

Comments
 (0)