You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
424 B
CMake
8 lines
424 B
CMake
include_directories(${libmpc_SOURCE_DIR}/include)
|
|
if(SHARED)
|
|
add_library(mpcdec SHARED huffman.c mpc_decoder.c mpc_reader.c streaminfo.c mpc_bits_reader.c mpc_demux.c requant.c synth_filter.c ${libmpc_SOURCE_DIR}/common/crc32.c)
|
|
else()
|
|
add_library(mpcdec_static STATIC huffman.c mpc_decoder.c mpc_reader.c streaminfo.c mpc_bits_reader.c mpc_demux.c requant.c synth_filter.c ${libmpc_SOURCE_DIR}/common/crc32.c)
|
|
endif()
|
|
|