You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
409 B
16 lines
409 B
5 years ago
|
if(CMAKE_INSTALL_PREFIX)
|
||
|
message("CMAKE_INSTALL_PREFIX is ${CMAKE_INSTALL_PREFIX}")
|
||
|
endif()
|
||
|
|
||
|
if(CMAKE_INSTALL_COMPONENT)
|
||
|
message("CMAKE_INSTALL_COMPONENT is ${CMAKE_INSTALL_COMPONENT}")
|
||
|
endif()
|
||
|
|
||
|
if(CMAKE_INSTALL_CONFIG_NAME)
|
||
|
message("CMAKE_INSTALL_CONFIG_NAME is ${CMAKE_INSTALL_CONFIG_NAME}")
|
||
|
endif()
|
||
|
|
||
|
if(CMAKE_INSTALL_DO_STRIP)
|
||
|
message("CMAKE_INSTALL_DO_STRIP is ${CMAKE_INSTALL_DO_STRIP}")
|
||
|
endif()
|