Skip to content

Commit 3bf62ac

Browse files
committed
Build: Display compiler identifiers and versions
1 parent 47abf97 commit 3bf62ac

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

CMakeLists.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,11 @@ MESSAGE(STATUS "Building LuxCore ${LUXCORE_VERSION}")
3333

3434
project(LuxCore)
3535

36+
MESSAGE(STATUS "C++ compiler identifier is ${CMAKE_CXX_COMPILER_ID}")
37+
MESSAGE(STATUS "C++ compiler version is ${CMAKE_CXX_COMPILER_VERSION}")
38+
MESSAGE(STATUS "C compiler identifier is ${CMAKE_C_COMPILER_ID}")
39+
MESSAGE(STATUS "C compiler version is ${CMAKE_C_COMPILER_VERSION}")
40+
3641
# Version computation
3742
#
3843
# Version number can be set by external caller (for instance, Github action)

0 commit comments

Comments
 (0)