We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eab26dd commit 743dff2Copy full SHA for 743dff2
CMakeLists.txt
@@ -471,3 +471,17 @@ if (ENABLE_UNINSTALL)
471
# the generated uninstall program is complete and correct
472
add_subdirectory (generate_uninstall)
473
endif ()
474
+
475
+# Spit out some information regarding the generated build system
476
+message (STATUS "Build files generated for:")
477
+message (STATUS "\tbuild system: ${CMAKE_GENERATOR}")
478
+if (CMAKE_GENERATOR_INSTANCE)
479
+ message (STATUS "\tinstance: ${CMAKE_GENERATOR_INSTANCE}")
480
+endif ()
481
+if (CMAKE_GENERATOR_PLATFORM)
482
+ message (STATUS "\tinstance: ${CMAKE_GENERATOR_PLATFORM}")
483
484
+if (CMAKE_GENERATOR_TOOLSET)
485
+ message (STATUS "\tinstance: ${CMAKE_GENERATOR_TOOLSET}")
486
487
0 commit comments