Skip to content
Snippets Groups Projects
Commit 406b32e4 authored by Nicolas Werner's avatar Nicolas Werner
Browse files

Make boost a system include

parent fe1791cc
No related branches found
No related tags found
No related merge requests found
project('harbour-konheko', 'cpp', default_options: ['cpp_std=c++17', 'b_pie=true']) project('harbour-konheko', 'cpp', default_options: ['cpp_std=c++17', 'b_pie=true'])
qt5 = import('qt5') qt5 = import('qt5')
qt5_dep = dependency('qt5', modules: ['Core', 'Qml', 'Quick', 'DBus']) qt5_dep = dependency('qt5', modules: ['Core', 'Qml', 'Quick', 'DBus'], include_type: 'system')
inc = include_directories('src') inc = include_directories('src')
cmake_pref = get_option('cget_prefix') cmake_pref = get_option('cget_prefix')
...@@ -11,9 +11,9 @@ boost_dep = dependency('boost', modules : [ ...@@ -11,9 +11,9 @@ boost_dep = dependency('boost', modules : [
'iostreams', 'iostreams',
'system', 'system',
'thread' 'thread'
], static: true) ], static: true, include_type: 'system')
zlib_dep = dependency('zlib') zlib_dep = dependency('zlib')
olm_dep = dependency('Olm', method : 'cmake', cmake_module_path : cmake_pref + '/Olm', static: true) olm_dep = dependency('Olm', method : 'cmake', cmake_module_path : cmake_pref + '/Olm', static: true, include_type: 'system')
matrix_dep = dependency('MatrixClient', method : 'cmake', cmake_module_path : cmake_pref + '/MatrixClient', static: true) matrix_dep = dependency('MatrixClient', method : 'cmake', cmake_module_path : cmake_pref + '/MatrixClient', static: true)
json_dep = dependency('nlohmann_json', method : 'cmake', modules : ['nlohmann_json::nlohmann_json'], cmake_module_path : cmake_pref + '/nlohmann_json', static: true) json_dep = dependency('nlohmann_json', method : 'cmake', modules : ['nlohmann_json::nlohmann_json'], cmake_module_path : cmake_pref + '/nlohmann_json', static: true)
ssl_dep = dependency('OpenSSL', static: true) ssl_dep = dependency('OpenSSL', static: true)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment