blob: 48a2850a101499f244ce8f65590840976bf7eb11 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
add_library(
opusfile STATIC
include/opusfile.h
src/http.c
src/info.c
src/internal.c
src/internal.h
src/opusfile.c
src/stream.c
src/wincerts.c
src/winerrno.h
)
include_directories(
include
${CMAKE_CURRENT_SOURCE_DIR}/../opus-1.1.4/include
${CMAKE_CURRENT_SOURCE_DIR}/../libogg-1.3.2/include
)
target_link_libraries(
opusfile
opus
ogg
)
|