kima2/src/core/CMakeLists.txt

40 lines
1.1 KiB
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-10-18 12:06:36 +02:00
2018-08-10 10:18:26 +02:00
if (MINGW)
find_package(XLNT REQUIRED STATIC)
else (MINGW)
find_package(PkgConfig REQUIRED)
pkg_check_modules(XLNT REQUIRED xlnt>=1.3)
endif (MINGW)
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
2019-10-04 15:15:43 +02:00
entityint.cpp
2019-10-04 14:05:19 +02:00
entityuuid.cpp
2018-07-09 16:06:39 +02:00
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-08-01 15:36:41 +02:00
excelreader.cpp
2019-09-26 16:41:39 +02:00
csvreader.cpp
2018-08-02 13:06:51 +02:00
jsonutil.cpp
utils.cpp
2018-07-05 16:29:43 +02:00
)
2018-10-18 12:06:36 +02:00
2019-09-26 16:41:39 +02:00
add_library(core STATIC ${CORE_SOURCES})
target_include_directories(core PRIVATE ${PROJECT_SOURCE_DIR}/3rdparty/csv-parser/include)
2018-08-01 11:27:13 +02:00
if (WIN32)
2019-09-26 16:41:39 +02:00
target_link_libraries(core PRIVATE printer Boost::boost Boost::date_time sqlite3 nlohmann_json::nlohmann_json ${XLNT_LIBRARY} csv)
2018-10-18 12:06:36 +02:00
target_link_libraries(core PRIVATE bcrypt)
2018-08-10 10:45:50 +02:00
else()
2019-09-26 16:41:39 +02:00
target_link_libraries(core PRIVATE printer Boost::boost Boost::date_time sqlite3 nlohmann_json::nlohmann_json ${XLNT_LIBRARIES} csv)
2018-08-01 11:27:13 +02:00
endif()
2018-08-10 10:45:50 +02:00
2019-09-26 16:41:39 +02:00
#target_include_directories(core PRIVATE ${PROJECT_SOURCE_DIR}/3rdparty/csv-parser)
2018-08-10 10:18:26 +02:00
target_include_directories(core PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})