Skip to content

Commit

Permalink
build: set minimum dependency versions (#25)
Browse files Browse the repository at this point in the history
  • Loading branch information
c-dilks committed Nov 29, 2023
1 parent 5b732b1 commit 802beff
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ See [design notes](doc/design.md)
## Dependencies

Dependencies likely available in your package manager:
- [`meson`](https://mesonbuild.com/) version 1.1 or newer
- [`fmt`](https://github.com/fmtlib/fmt) version 10 or newer
- [`meson`](https://mesonbuild.com/)
- [`fmt`](https://github.com/fmtlib/fmt)

Dependencies you may need to build yourself, unless available on a Jefferson Lab computer:
- [`hipo`](https://github.com/gavalian/hipo)
Expand Down
5 changes: 3 additions & 2 deletions meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ project(
version: '0.0.0',
license: 'LGPLv3',
default_options: [ 'cpp_std=c++17' ],
meson_version: '>=1.1'
)

project_inc = include_directories('src')
Expand All @@ -16,8 +17,8 @@ endforeach
project_lib_rpath = '$ORIGIN'
project_bin_rpath = ':'.join( dep_lib_rpaths + [ '$ORIGIN/../' + get_option('libdir') ] )

hipo_dep = dependency('hipo4')
fmt_dep = dependency('fmt')
hipo_dep = dependency('hipo4', version: '>=1.3')
fmt_dep = dependency('fmt', version: '>=9.1.0')

subdir('src/services')
subdir('src/algorithms')
Expand Down

0 comments on commit 802beff

Please sign in to comment.