mirror of
https://github.com/LizardByte/Sunshine.git
synced 2025-01-01 03:18:32 +00:00
10 lines
353 B
CMake
10 lines
353 B
CMake
# unix specific compile definitions
|
|
# put anything here that applies to both linux and macos
|
|
|
|
list(APPEND SUNSHINE_EXTERNAL_LIBRARIES Boost::log)
|
|
|
|
# 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()
|