Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 605 Bytes

CMakeLists.txt

File metadata and controls

23 lines (18 loc) · 605 Bytes
 
Dec 1, 2019
Dec 1, 2019
1
2
cmake_minimum_required(VERSION 2.8.11)
project(libogg C)
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
include(${CMAKE_CURRENT_SOURCE_DIR}/../audio_codec_common.cmake)
add_library(ogg STATIC
src/bitwise.c
src/framing.c
)
target_include_directories(ogg PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/include)
target_include_directories(ogg PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/android)
install(TARGETS ogg
LIBRARY DESTINATION "lib"
ARCHIVE DESTINATION "lib"
INCLUDES DESTINATION "include")
install(FILES
Dec 1, 2019
Dec 1, 2019
20
android/ogg/config_types.h
21
22
23
include/ogg/ogg.h
include/ogg/os_types.h
DESTINATION include/ogg)