blob: 50cd7d75889ad587e4d7ce27f9e564f9ce9a78e3 (
plain)
1
2
3
4
5
6
7
8
9
10
|
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}")
|