7 lines
197 B
CMake
7 lines
197 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()
|
||
|
|