mirror of
https://github.com/thinkonmay/sunshine-sdk.git
synced 2026-01-06 01:49:20 +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()
|