Skip to content

Commit f8ccfaf

Browse files
authored
Move compiler notice to stdout from stderr. (#617)
1 parent 8eaaea2 commit f8ccfaf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cmake/Config.cmake.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ set (@PROJECT_NAME@_INCLUDE_DIRS @PACKAGE_INC_INSTALL_DIR@)
1313
set (@PROJECT_NAME@_LIBRARY_DIRS @PACKAGE_LIB_INSTALL_DIR@)
1414

1515
if (CMAKE_SIZEOF_VOID_P EQUAL 8)
16-
MESSAGE ("64 bits compiler detected")
16+
MESSAGE (STATUS "64 bits compiler detected")
1717
SET (PLATFORM_ACH "X64")
1818
SET (BOARD_CONTROLLER_NAME "BoardController" "libBoardController")
1919
SET (DATA_HANDLER_NAME "DataHandler" "libDataHandler")
2020
SET (ML_MODULE_NAME "MLModule" "libMLModule")
2121
SET (BRAINFLOW_NAME "Brainflow" "libBrainflow")
2222
else (CMAKE_SIZEOF_VOID_P EQUAL 8)
23-
MESSAGE ("32 bits compiler detected")
23+
MESSAGE (STATUS "32 bits compiler detected")
2424
SET (PLATFORM_ACH "X86")
2525
if (MSVC)
2626
SET (BOARD_CONTROLLER_NAME "BoardController32" "libBoardController32")

0 commit comments

Comments
 (0)