@@ -10,41 +10,41 @@ set(CMAKE_CXX_STANDARD_REQUIRED True)
1010if (CMAKE_SYSTEM_NAME STREQUAL "Linux" ) # Settings for Linux
1111 message (STATUS "OS : Linux" )
1212 if (CMAKE_CXX_COMPILER_ID STREQUAL "GNU" )
13- message (STATUS "C++ Compiler : gcc" )
13+ message (STATUS "Linux : gcc" )
1414 set (CMAKE_C_COMPLIER "gcc" )
1515 set (CMAKE_CXX_FLAGS_DEBUG "-g" )
1616 set (CMAKE_CXX_FLAGS_RELEASE "-O3" )
1717 elseif (CMAKE_CXX_COMPILER_ID STREQUAL "Clang" )
18- message (STATUS "C++ Compiler : clang" )
18+ message (STATUS "Linux : clang" )
1919 # ...
2020 elseif (CMAKE_CXX_COMPILER_ID STREQUAL "Intel" )
21- message (STATUS "C++ Compiler : Intel" )
21+ message (STATUS "Linux : Intel" )
2222 # ...
2323 elseif (CMAKE_CXX_COMPILER_ID STREQUAL "PGI" )
24- message (STATUS "C++ Compiler : PGI (NVIDIA)" )
24+ message (STATUS "Linux : PGI (NVIDIA)" )
2525 # ...
2626 elseif (CMAKE_CXX_COMPILER_ID STREQUAL "XL" )
27- message (STATUS "C++ Compiler : IBM XL" )
27+ message (STATUS "Linux : IBM XL" )
2828 # ...
2929 elseif (CMAKE_CXX_COMPILER_ID STREQUAL "Cray" )
30- message (STATUS "C++ Compiler : Cray" )
30+ message (STATUS "Linux : Cray" )
3131 # ...
3232 else ()
3333 message (STATUS "Using an unknown compiler" )
3434 endif ()
3535elseif (CMAKE_SYSTEM_NAME STREQUAL "Windows" )
3636 message (STATUS "OS : Windows" )
3737 if (CMAKE_CXX_COMPILER_ID STREQUAL "GNU" )
38- message (STATUS "C++ Compiler : gcc" )
38+ message (STATUS "Windows : gcc" )
3939 # ...
4040 elseif (CMAKE_CXX_COMPILER_ID STREQUAL "Clang" )
41- message (STATUS "C++ Compiler : clang" )
41+ message (STATUS "Windows : clang" )
4242 # ...
4343 elseif (CMAKE_CXX_COMPILER_ID STREQUAL "MSVC" )
44- message (STATUS "C++ Compiler : Visual C++" )
44+ message (STATUS "Windows : Visual C++" )
4545 # ...
4646 elseif (CMAKE_CXX_COMPILER_ID STREQUAL "Embarcadero" )
47- message (STATUS "C++ Compiler : C++ Builder (Embarcadero)" )
47+ message (STATUS "Windows : C++ Builder (Embarcadero)" )
4848 # ...
4949 else ()
5050 message (STATUS "Using an unknown compiler" )
0 commit comments