Files
Sunshine/cmake/targets/linux.cmake
T
2026-05-24 22:21:24 -04:00

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()