Skip to content

Commit c18b562

Browse files
committed
add sndio support (CMake)
1 parent 677117b commit c18b562

File tree

3 files changed

+61
-1
lines changed

3 files changed

+61
-1
lines changed

CMakeLists.txt

+12
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,10 @@ elseif(${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD")
145145
configure_file("${CMAKE_SOURCE_DIR}/cmake/cpack/${CMAKE_PROJECT_NAME}.desktop.in"
146146
"${CMAKE_BINARY_DIR}/${CMAKE_PROJECT_NAME}.desktop" @ONLY)
147147

148+
elseif(${CMAKE_SYSTEM_NAME} STREQUAL "OpenBSD")
149+
set(OPENBSD TRUE)
150+
set(HAVE_SNDIO TRUE)
151+
148152
elseif(APPLE)
149153
if("${CMAKE_OSX_DEPLOYMENT_TARGET}" STREQUAL "")
150154
message(STATUS "Build for macOS target: local version")
@@ -301,6 +305,12 @@ if(LINUX)
301305
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DUSE_AVAHI_CLIENT")
302306
endif()
303307

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+
304314
elseif (NOT WIN32 AND NOT CYGWIN)
305315
find_package(Portaudio REQUIRED)
306316
if(PORTAUDIO_FOUND)
@@ -314,6 +324,8 @@ else()
314324
set(UDEV_LIBRARIES "")
315325
set(PORTAUDIO_INCLUDE_DIRS "")
316326
set(PORTAUDIO_LIBRARIES "")
327+
set(SNDIO_INCLUDE_DIRS "")
328+
set(SNDIO_LIBRARIES "")
317329
endif()
318330

319331
# manage and fetch new data

cmake/modules/Findsndio.cmake

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
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)

src/CMakeLists.txt

+7-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ include_directories(
88
${ALSA_INCLUDE_DIRS}
99
${UDEV_INCLUDE_DIRS}
1010
${PORTAUDIO_INCLUDE_DIRS}
11+
${SNDIO_INCLUDE_DIRS}
1112
${CUSTOM_GEOTRANZ_DIR}
1213
${CUSTOM_HIDAPI_DIR}
1314
)
@@ -116,7 +117,11 @@ if(LINUX)
116117
list(REMOVE_ITEM direwolf_SOURCES
117118
dwgpsd.c
118119
)
119-
else() # macOS freebsd openbsd
120+
elseif(HAVE_SNDIO)
121+
list(APPEND direwolf_SOURCES
122+
audio.c
123+
)
124+
else() # macOS freebsd
120125
list(APPEND direwolf_SOURCES
121126
audio_portaudio.c
122127
)
@@ -143,6 +148,7 @@ target_link_libraries(direwolf
143148
${ALSA_LIBRARIES}
144149
${UDEV_LIBRARIES}
145150
${PORTAUDIO_LIBRARIES}
151+
${SNDIO_LIBRARIES}
146152
${AVAHI_LIBRARIES}
147153
)
148154

0 commit comments

Comments
 (0)