My personal project and infrastructure archive
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.
 
 
 
 
 
 
nomicon/pkgs/development/libraries/ilbc/CMakeLists.txt

11 lines
233 B

cmake_minimum_required(VERSION 2.6)
project(ilbc)
file(GLOB ilbc_SRCS *.c)
file(GLOB ilbc_HDRS *.h)
add_library(ilbc SHARED ${ilbc_SRCS})
install(TARGETS ilbc DESTINATION lib)
install(FILES ${ilbc_HDRS} DESTINATION include/ilbc)