This commit is contained in:
Martin Brodbeck 2018-07-09 16:06:39 +02:00
parent 0c72b31953
commit 8f3dda3520
1 changed files with 8 additions and 5 deletions

View File

@ -3,13 +3,16 @@
find_package(Boost 1.62 REQUIRED) find_package(Boost 1.62 REQUIRED)
find_package(SQLite3 REQUIRED) find_package(SQLite3 REQUIRED)
set(CORE_HEADERS #set(CORE_HEADERS
entity.h # entity.h
database.h # database.h
) #)
set(CORE_SOURCES set(CORE_SOURCES
entity.cpp
database.cpp database.cpp
entity.cpp
seller.cpp
article.cpp
) )
add_library(core STATIC ${CORE_SOURCES}) add_library(core STATIC ${CORE_SOURCES})