mirror of
https://github.com/LizardByte/Sunshine.git
synced 2024-11-17 08:09:50 +00:00
16 lines
396 B
CMake
16 lines
396 B
CMake
|
# unix specific packaging
|
||
|
# put anything here that applies to both linux and macos
|
||
|
|
||
|
# return here if building a macos package
|
||
|
if(SUNSHINE_PACKAGE_MACOS)
|
||
|
return()
|
||
|
endif()
|
||
|
|
||
|
# Installation destination dir
|
||
|
set(CPACK_SET_DESTDIR true)
|
||
|
if(NOT CMAKE_INSTALL_PREFIX)
|
||
|
set(CMAKE_INSTALL_PREFIX "/usr/share/sunshine")
|
||
|
endif()
|
||
|
|
||
|
install(TARGETS sunshine RUNTIME DESTINATION "${CMAKE_INSTALL_BINDIR}")
|