reduce required libwebsockets version to 4.0.0

pull/3/head
Falk Werner 4 years ago
parent a506873da9
commit b5f1253738

@ -1,5 +1,9 @@
# webfuse-provider changelog
## 0.2.0 _(unknown)_
* *Feature*: reduce required libwebsockets version to 4.0.0
## 0.1.0 _(Sat Jun 26 2020)_
* initial version

@ -3,7 +3,7 @@ project('webfuse-provider', 'c', 'cpp', version: '0.4.0', license: 'LGPL-3.0+')
without_tests = get_option('without_tests')
without_examples = get_option('without_examples')
libwebsockets_dep = dependency('libwebsockets', version: '>=4.0.13', required: false)
libwebsockets_dep = dependency('libwebsockets', version: '>=4.0.0', required: false)
if not libwebsockets_dep.found()
cmake = import('cmake')
libwebsockets = cmake.subproject('libwebsockets')

Loading…
Cancel
Save