Skip to content
Snippets Groups Projects
Commit c076e3aa authored by Florian Schmaus's avatar Florian Schmaus
Browse files

Merge branch 'add-boost-dependency' into 'master'

[meson] add boost as dependency

See merge request i4/manycore/emper!301
parents 7a0bf501 e976a496
No related branches found
No related tags found
No related merge requests found
......@@ -19,7 +19,11 @@ if not uring_dep.found()
endif
numa_dep = dependency('numa')
emper_dependencies = [thread_dep, uring_dep, numa_dep]
# boost header dependency needed for the circular_buffer used in emper/io/Stats.cpp
boost_dep = dependency('boost')
emper_dependencies = [thread_dep, uring_dep, numa_dep, boost_dep]
boost_thread_dep = dependency('boost', modules : ['thread'], required: false)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment