mirror of
https://github.com/LizardByte/Sunshine.git
synced 2026-08-07 10:20:46 +00:00
dbce229174
Co-authored-by: Kishi <41839133+Kishi85@users.noreply.github.com>
10 lines
259 B
CMake
10 lines
259 B
CMake
# linux specific target definitions
|
|
|
|
if(NOT FREEBSD)
|
|
# Using newer c++ compilers / features on older distros causes runtime dyn link errors
|
|
list(APPEND SUNSHINE_EXTERNAL_LIBRARIES
|
|
-static-libgcc
|
|
-static-libstdc++
|
|
)
|
|
endif()
|