mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-26 08:09:00 +08:00
47 lines
770 B
CMake
47 lines
770 B
CMake
|
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)
|
||
|
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()
|