feader-c-lib/CMakeLists.txt

21 lines
291 B
Text
Raw Normal View History

2018-03-07 14:50:28 +00:00
cmake_minimum_required(VERSION 3.5)
project(
feader
)
2018-03-07 14:50:28 +00:00
add_library(
feader STATIC
src/feader.c
)
add_library(
2018-03-07 14:50:28 +00:00
sqlite3 STATIC
src/sqlite/sqlite3.c
)
add_library(
yxml STATIC
src/yxml/yxml.c
)
2018-03-07 14:50:28 +00:00
target_link_libraries(
feader
sqlite3
yxml
)