Skip to content

Commit b5c2322

Browse files
committed
Fix cmake message syntax
1 parent 0f60e96 commit b5c2322

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

tests/cpp-tests/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -603,7 +603,7 @@ elseif(WINRT)
603603
endif()
604604

605605
if((NOT IOS) AND (NOT WINRT))
606-
message("CMake ${APP_NAME} target_precompile_headers")
606+
message(STATUS "CMake ${APP_NAME} target_precompile_headers")
607607
target_precompile_headers(${APP_NAME} PRIVATE
608608
"$<$<COMPILE_LANGUAGE:CXX>:axmol.h>"
609609
)

tests/fairygui-tests/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ if ((NOT APPLE) AND (NOT WINRT))
204204
endif()
205205

206206
if((NOT IOS) AND (NOT WINRT))
207-
message("CMake ${APP_NAME} target_precompile_headers")
207+
message(STATUS "CMake ${APP_NAME} target_precompile_headers")
208208
target_precompile_headers(${APP_NAME} PRIVATE
209209
"$<$<COMPILE_LANGUAGE:CXX>:axmol.h>"
210210
)

tests/live2d-tests/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ if ((NOT APPLE) AND (NOT WINRT))
205205
endif()
206206

207207
if((NOT IOS) AND (NOT WINRT))
208-
message("CMake ${APP_NAME} target_precompile_headers")
208+
message(STATUS "CMake ${APP_NAME} target_precompile_headers")
209209
target_precompile_headers(${APP_NAME} PRIVATE
210210
"$<$<COMPILE_LANGUAGE:CXX>:axmol.h>"
211211
)

tests/unit-tests/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ elseif(WINRT)
209209
endif()
210210

211211
if((NOT IOS) AND (NOT WINRT))
212-
message("CMake ${APP_NAME} target_precompile_headers")
212+
message(STATUS "CMake ${APP_NAME} target_precompile_headers")
213213
target_precompile_headers(${APP_NAME} PRIVATE
214214
"$<$<COMPILE_LANGUAGE:CXX>:axmol.h>"
215215
)

0 commit comments

Comments
 (0)