Skip to content

Commit

Permalink
cwalk 1.2.7
Browse files Browse the repository at this point in the history
  • Loading branch information
antoniovazquezblanco committed Feb 2, 2024
1 parent add39f4 commit b13b7a3
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 0 deletions.
8 changes: 8 additions & 0 deletions releases.json
Original file line number Diff line number Diff line change
Expand Up @@ -479,6 +479,14 @@
"8.0.1-1"
]
},
"cwalk": {
"dependency_names": [
"cwalk"
],
"versions": [
"1.2.7-1"
]
},
"cxxopts": {
"dependency_names": [
"cxxopts"
Expand Down
9 changes: 9 additions & 0 deletions subprojects/cwalk.wrap
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
[wrap-file]
directory = cwalk-1.2.7
source_url = https://github.com/likle/cwalk/archive/refs/tags/v1.2.7.tar.gz
source_filename = v1.2.7.tar.gz
source_hash = ae424ec30830c970412e34d9092eaa6131d91af289cdad0ad66a7b1c58e768e7
patch_directory = cwalk

[provide]
cwalk = cwalk_dep
15 changes: 15 additions & 0 deletions subprojects/packagefiles/cwalk/meson.build
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
project('cwalk', 'c',
license: 'MIT',
meson_version: '>= 0.50.0'
)

cwalk_inc = include_directories('include')

cwalk = library('cwalk', 'src/cwalk.c',
install: true,
include_directories: cwalk_inc
)

install_headers('include/cwalk.h')

cwalk_dep = declare_dependency(include_directories: 'include', link_with: cwalk)

0 comments on commit b13b7a3

Please sign in to comment.