1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2024-10-27 20:44:10 +00:00

reduce required libwebsockets version to 4.0.0

This commit is contained in:
Falk Werner 2020-07-08 20:01:17 +02:00
parent a506873da9
commit b5f1253738
2 changed files with 5 additions and 1 deletions

View File

@ -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

View File

@ -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')