mirror of
https://github.com/LizardByte/Sunshine.git
synced 2024-12-28 00:18:14 +00:00
11 lines
368 B
CMake
11 lines
368 B
CMake
# unix specific compile definitions
|
|
# put anything here that applies to both linux and macos
|
|
|
|
list(APPEND SUNSHINE_EXTERNAL_LIBRARIES
|
|
${CURL_LIBRARIES})
|
|
|
|
# add install prefix to assets path if not already there
|
|
if(NOT SUNSHINE_ASSETS_DIR MATCHES "^${CMAKE_INSTALL_PREFIX}")
|
|
set(SUNSHINE_ASSETS_DIR "${CMAKE_INSTALL_PREFIX}/${SUNSHINE_ASSETS_DIR}")
|
|
endif()
|