17 lines
260 B
CMake
17 lines
260 B
CMake
add_library(Database
|
|
Database.h Database.cpp
|
|
# shell.c
|
|
sqlite3.h sqlite3.c
|
|
sqlite3ext.h
|
|
)
|
|
|
|
target_include_directories(Database
|
|
INTERFACE ${CMAKE_CURRENT_SOURCE_DIR}
|
|
)
|
|
|
|
target_link_libraries(Database
|
|
PUBLIC Universal
|
|
)
|
|
|
|
|