build(linux): add homebrew support (#2667)

This commit is contained in:
ReenigneArcher
2024-06-12 15:58:25 -04:00
committed by GitHub
parent e1f0ca829d
commit f68de7da93
10 changed files with 148 additions and 36 deletions

View File

@@ -2,6 +2,9 @@
# this file will also load platform specific macros
add_executable(sunshine ${SUNSHINE_TARGET_FILES})
foreach(dep ${SUNSHINE_TARGET_DEPENDENCIES})
add_dependencies(sunshine ${dep}) # compile these before sunshine
endforeach()
# platform specific target definitions
if(WIN32)