You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
236 B
12 lines
236 B
2 years ago
|
cmake_minimum_required(VERSION 3.4.1)
|
||
|
|
||
|
project("faac")
|
||
|
|
||
|
# the path of faac source code
|
||
|
aux_source_directory(${CMAKE_CURRENT_SOURCE_DIR}/libfaac FAAC_SRC)
|
||
|
|
||
|
add_library(faac
|
||
|
SHARED
|
||
|
${FAAC_SRC})
|
||
|
|
||
|
target_link_libraries(faac)
|