6 lines
196 B
CMake
6 lines
196 B
CMake
|
if(CPACK_GENERATOR MATCHES "DEB")
|
||
|
set(CPACK_PACKAGING_INSTALL_PREFIX "/opt/${CPACK_PACKAGE_VENDOR}/${CPACK_PACKAGE_NAME}")
|
||
|
else()
|
||
|
set(CPACK_PACKAGING_INSTALL_PREFIX "${PROJECT_NAME}")
|
||
|
endif()
|