more on build scripts
This commit is contained in:
parent
a8181729f9
commit
77791e142c
2 changed files with 6 additions and 6 deletions
|
@ -1,4 +1,4 @@
|
|||
boost = dependency('boost', modules :['date_time'])
|
||||
boost = dependency('boost', modules: ['date_time'], static: true)
|
||||
xlnt = dependency('xlnt')
|
||||
sqlite = dependency('sqlite3')
|
||||
|
||||
|
@ -8,6 +8,6 @@ src = ['database.cpp', 'entity.cpp', 'entityint.cpp', 'entityuuid.cpp',
|
|||
|
||||
core_inc = include_directories('..')
|
||||
|
||||
core_lib = static_library('core', src, dependencies :[boost, xlnt, sqlite, nlohmann_lib, csv_dep])
|
||||
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)
|
||||
core_dep = declare_dependency(link_with: core_lib, include_directories : core_inc)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue