mirror of
https://github.com/LizardByte/Sunshine.git
synced 2024-11-16 23:10:13 +00:00
c86a4e112b
Co-authored-by: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com>
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}")
|