mirror of
https://git.freebsd.org/ports.git
synced 2025-06-14 17:20:29 -04:00
17 lines
558 B
Text
17 lines
558 B
Text
--- server/scsynth/CMakeLists.txt.orig 2020-11-15 17:38:26 UTC
|
|
+++ server/scsynth/CMakeLists.txt
|
|
@@ -230,7 +230,13 @@ if(CMAKE_SYSTEM_NAME MATCHES "Linux")
|
|
target_link_libraries(libscsynth rt)
|
|
endif()
|
|
|
|
-add_executable(scsynth scsynth_main.cpp)
|
|
+add_executable(scsynth
|
|
+ scsynth_main.cpp
|
|
+
|
|
+ # these files contain code only used in main()
|
|
+ ${CMAKE_SOURCE_DIR}/common/SC_ServerBootDelayWarning.cpp
|
|
+ $<$<BOOL:${APPLE}>: ${CMAKE_SOURCE_DIR}/common/SC_AppleEventLoop.mm >
|
|
+ )
|
|
target_link_libraries(scsynth libscsynth)
|
|
|
|
if (PTHREADS_FOUND)
|