kima2/src/core/CMakeLists.txt

18 lines
436 B
CMake
Raw Normal View History

2018-07-18 15:04:18 +02:00
set(Boost_USE_STATIC_LIBS ON)
2018-07-06 10:54:44 +02:00
2018-07-12 13:34:38 +02:00
find_package(Boost 1.62 COMPONENTS date_time REQUIRED)
2018-07-06 13:30:23 +02:00
find_package(SQLite3 REQUIRED)
2018-07-06 10:54:44 +02:00
2018-07-05 16:29:43 +02:00
set(CORE_SOURCES
2018-07-06 13:30:23 +02:00
database.cpp
2018-07-09 16:06:39 +02:00
entity.cpp
seller.cpp
article.cpp
2018-07-12 13:34:38 +02:00
sale.cpp
2018-07-13 13:04:19 +02:00
marketplace.cpp
2018-07-05 16:29:43 +02:00
)
2018-07-06 10:54:44 +02:00
add_library(core STATIC ${CORE_SOURCES})
2018-07-12 13:34:38 +02:00
target_link_libraries(core Boost::boost Boost::date_time)
2018-07-14 15:53:01 +02:00
target_link_libraries(core sqlite3)
target_include_directories(core PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})