File tree 3 files changed +61
-1
lines changed
3 files changed +61
-1
lines changed Original file line number Diff line number Diff line change @@ -145,6 +145,10 @@ elseif(${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD")
145
145
configure_file ("${CMAKE_SOURCE_DIR} /cmake/cpack/${CMAKE_PROJECT_NAME} .desktop.in"
146
146
"${CMAKE_BINARY_DIR} /${CMAKE_PROJECT_NAME} .desktop" @ONLY)
147
147
148
+ elseif (${CMAKE_SYSTEM_NAME} STREQUAL "OpenBSD" )
149
+ set (OPENBSD TRUE )
150
+ set (HAVE_SNDIO TRUE )
151
+
148
152
elseif (APPLE )
149
153
if ("${CMAKE_OSX_DEPLOYMENT_TARGET} " STREQUAL "" )
150
154
message (STATUS "Build for macOS target: local version" )
@@ -301,6 +305,12 @@ if(LINUX)
301
305
set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DUSE_AVAHI_CLIENT" )
302
306
endif ()
303
307
308
+ elseif (HAVE_SNDIO)
309
+ find_package (sndio REQUIRED)
310
+ if (SNDIO_FOUND)
311
+ set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DUSE_SNDIO" )
312
+ endif ()
313
+
304
314
elseif (NOT WIN32 AND NOT CYGWIN )
305
315
find_package (Portaudio REQUIRED)
306
316
if (PORTAUDIO_FOUND)
@@ -314,6 +324,8 @@ else()
314
324
set (UDEV_LIBRARIES "" )
315
325
set (PORTAUDIO_INCLUDE_DIRS "" )
316
326
set (PORTAUDIO_LIBRARIES "" )
327
+ set (SNDIO_INCLUDE_DIRS "" )
328
+ set (SNDIO_LIBRARIES "" )
317
329
endif ()
318
330
319
331
# manage and fetch new data
Original file line number Diff line number Diff line change
1
+ # - Try to find sndio
2
+ #
3
+ # SNDIO_FOUND - system has sndio
4
+ # SNDIO_LIBRARIES - location of the library for sndio
5
+ # SNDIO_INCLUDE_DIRS - location of the include files for sndio
6
+
7
+ set (SNDIO_ROOT_DIR
8
+ "${SNDIO_ROOT_DIR} "
9
+ CACHE
10
+ PATH
11
+ "Directory to search for sndio" )
12
+
13
+ # no need to check pkg-config
14
+
15
+ find_path (SNDIO_INCLUDE_DIRS
16
+ NAMES
17
+ sndio.h
18
+ PATHS
19
+ /usr/local/include
20
+ /usr/include
21
+ /opt/local/include
22
+ HINTS
23
+ ${SNDIO_ROOT_DIR}
24
+ )
25
+
26
+ find_library (SNDIO_LIBRARIES
27
+ NAMES
28
+ sndio
29
+ PATHS
30
+ /usr/local/lib
31
+ /usr/lib
32
+ /usr/lib64
33
+ /opt/local/lib
34
+ HINTS
35
+ ${SNDIIO_ROOT_DIR}
36
+ )
37
+
38
+
39
+ include (FindPackageHandleStandardArgs)
40
+ find_package_handle_standard_args(SNDIO DEFAULT_MSG SNDIO_INCLUDE_DIRS SNDIO_LIBRARIES)
41
+
42
+ mark_as_advanced (SNDIO_INCLUDE_DIRS SNDIO_LIBRARIES)
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ include_directories(
8
8
${ALSA_INCLUDE_DIRS}
9
9
${UDEV_INCLUDE_DIRS}
10
10
${PORTAUDIO_INCLUDE_DIRS}
11
+ ${SNDIO_INCLUDE_DIRS}
11
12
${CUSTOM_GEOTRANZ_DIR}
12
13
${CUSTOM_HIDAPI_DIR}
13
14
)
@@ -116,7 +117,11 @@ if(LINUX)
116
117
list (REMOVE_ITEM direwolf_SOURCES
117
118
dwgpsd.c
118
119
)
119
- else () # macOS freebsd openbsd
120
+ elseif (HAVE_SNDIO)
121
+ list (APPEND direwolf_SOURCES
122
+ audio.c
123
+ )
124
+ else () # macOS freebsd
120
125
list (APPEND direwolf_SOURCES
121
126
audio_portaudio.c
122
127
)
@@ -143,6 +148,7 @@ target_link_libraries(direwolf
143
148
${ALSA_LIBRARIES}
144
149
${UDEV_LIBRARIES}
145
150
${PORTAUDIO_LIBRARIES}
151
+ ${SNDIO_LIBRARIES}
146
152
${AVAHI_LIBRARIES}
147
153
)
148
154
You can’t perform that action at this time.
0 commit comments