mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 03:39:06 +08:00
4cbbcbddfd
* [vcpkg ci:osx] Remove brew install * add instructions for creating a new vagrant box * fix the vagrant scripts for the new box * finish fixing the setup * [mecab jxrlib] fix ports for CI mecab needed to use an actual ref that wasn't master, and jxrlib needed a patch for xcode 12 CLTs. Additionally, this fixes the mecab version to be a date, the date of the last commit, since `1.0` is not the correct version (mecab doesn't have released versions) * [many ports] fix compile with Xcode 12 CLTs This mostly means fixing errors on implicit-function-declaration, and removing some Werrors * alac-decoder * apr * argtable2 * arrow * hyperscan * mcpp * minizip * mosquitto * stormlib * [many ports] even more Xcode 12 CLT fixes * [jxrlib darknet] fix the last ports! (hopefully) * CRs, plus minor wip changes to osx scripts
49 lines
841 B
CMake
49 lines
841 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)
|
|
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()
|