KIMA2 ist ein kleines Kassenprogramm für Kindersachenmärkte.
https://www.rustysoft.de/?01_kima2
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
544 B
13 lines
544 B
boost = dependency('boost', modules :['date_time']) |
|
xlnt = dependency('xlnt') |
|
sqlite = dependency('sqlite3') |
|
|
|
src = ['database.cpp', 'entity.cpp', 'entityint.cpp', 'entityuuid.cpp', |
|
'seller.cpp', 'article.cpp', 'sale.cpp', 'marketplace.cpp', |
|
'excelreader.cpp', 'csvreader.cpp', 'jsonutil.cpp', 'utils.cpp'] |
|
|
|
core_inc = include_directories('..') |
|
|
|
core_lib = static_library('core', src, dependencies :[boost, xlnt, sqlite, nlohmann_lib, csv_dep]) |
|
|
|
core_dep = declare_dependency(link_with : core_lib, include_directories : core_inc)
|
|
|