13 lines
225 B
CMake
13 lines
225 B
CMake
add_library(Database
|
|
Database.h Database.cpp
|
|
Task.h Task.cpp
|
|
)
|
|
|
|
target_include_directories(Database
|
|
INTERFACE ${CMAKE_CURRENT_SOURCE_DIR}
|
|
)
|
|
|
|
target_link_libraries(Database
|
|
PUBLIC sqlite3
|
|
PUBLIC Universal
|
|
) |