diff options
| author | Florent Castelli <florent.castelli@gmail.com> | 2017-01-25 06:29:30 +0100 |
|---|---|---|
| committer | Florent Castelli <florent.castelli@gmail.com> | 2017-01-25 15:07:32 +0100 |
| commit | 223e213bcfdb0bbe3d800983118d3618f83ab61e (patch) | |
| tree | 069b2bacafb816daea6fe6fb3e91d2a56a4249ee /Source | |
| parent | 103361c8468138a43265e32d45d2e8bc18930a37 (diff) | |
cmake: Change endmacro(.*) to endmacro()
Diffstat (limited to 'Source')
| -rw-r--r-- | Source/CMakeLists.txt | 2 | ||||
| -rw-r--r-- | Source/UnitTests/CMakeLists.txt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Source/CMakeLists.txt b/Source/CMakeLists.txt index a13a96d70b..9d886827f4 100644 --- a/Source/CMakeLists.txt +++ b/Source/CMakeLists.txt @@ -11,7 +11,7 @@ add_definitions(-D__STDC_CONSTANT_MACROS) macro(add_dolphin_library lib srcs libs) add_library(${lib} STATIC ${srcs}) target_link_libraries(${lib} ${libs}) -endmacro(add_dolphin_library) +endmacro() add_subdirectory(Core) if (ANDROID) diff --git a/Source/UnitTests/CMakeLists.txt b/Source/UnitTests/CMakeLists.txt index ade9345a00..d66dfd7129 100644 --- a/Source/UnitTests/CMakeLists.txt +++ b/Source/UnitTests/CMakeLists.txt @@ -17,7 +17,7 @@ macro(add_dolphin_test target srcs) target_link_libraries(Test_${target} ${LIBS}) add_dependencies(unittests Test_${target}) add_test(NAME ${target} COMMAND ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/Tests/${target}) -endmacro(add_dolphin_test) +endmacro() add_subdirectory(TestUtils) |
