repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git]
/
pkgs
/
development
/
libraries
/
ilbc
/
CMakeLists.txt
blob
edd8e7a32797d5f76456dde6eacd4632dbdcb014
1
cmake_minimum_required(VERSION 2.6)
2
3
project(ilbc)
4
5
file(GLOB ilbc_SRCS *.c)
6
file(GLOB ilbc_HDRS *.h)
7
8
add_library(ilbc SHARED ${ilbc_SRCS})
9
10
install(TARGETS ilbc DESTINATION lib)
11
install(FILES ${ilbc_HDRS} DESTINATION include/ilbc)