mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-03 04:10:05 -06:00
11 lines
333 B
CMake
11 lines
333 B
CMake
build_command(command)
|
|
message("${command}")
|
|
build_command(command TARGET MyTarget)
|
|
message("${command}")
|
|
build_command(command CONFIGURATION Debug)
|
|
message("${command}")
|
|
build_command(command CONFIGURATION Debug TARGET MyTarget)
|
|
message("${command}")
|
|
build_command(cache_command "${CMAKE_MAKE_PROGRAM}")
|
|
message("${cache_command}")
|