blob: a7c62f6487a7380e353ac1446026d0879a1f3ae8 (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
cmake_minimum_required (VERSION 3.9)
project (alac_decoder)
set(HEADERS
decomp.h
demux.h
stream.h
wavwriter.h
)
set (SRCS
decomp.c
alac.c
demux.c
stream.c
wavwriter.c
)
if(MSVC)
add_compile_options(/W4 -D_CRT_SECURE_NO_WARNINGS -DTARGET_OS_WIN32)
else()
add_compile_options(-Wno-error=implicit-function-declaration)
endif()
include_directories(.)
add_library(libalac_decoder ${SRCS})
add_executable(alac_decoder main.c)
target_link_libraries(alac_decoder libalac_decoder)
install(
TARGETS libalac_decoder
RUNTIME DESTINATION bin
LIBRARY DESTINATION lib
ARCHIVE DESTINATION lib
)
if(NOT DISABLE_INSTALL_TOOLS)
install (
TARGETS alac_decoder
RUNTIME DESTINATION tools/alac-decoder
)
endif()
if(NOT DISABLE_INSTALL_HEADERS)
install(FILES ${HEADERS} DESTINATION include/alac_decoder)
endif()
|