Skip to content

Commit

Permalink
meson: Rename dep_canfigger->canfigger_dep
Browse files Browse the repository at this point in the history
  • Loading branch information
andy5995 committed Feb 26, 2024
1 parent e973575 commit 8639bc4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions ChangeLog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
* use 'canfigger_free_current_attr_str_advance()' instead of
'list->attr_node = list->attr_node->next'
* canfigger_attr points to the current attribute, or NULL if there is none
* In meson.build, rename dep_canfigger->canfigger_dep

2024-02-21

Expand Down
4 changes: 2 additions & 2 deletions meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ buildtarget = library(

# How to use in a superproject and other info
# https://mesonbuild.com/Subprojects.html
dep_canfigger = declare_dependency(include_directories : inc,
canfigger_dep = declare_dependency(include_directories : inc,
link_with : buildtarget)

if not meson.is_subproject()
Expand All @@ -70,7 +70,7 @@ if get_option('build_examples')
exe = executable(
'example',
'example.c',
dependencies: dep_canfigger
dependencies: canfigger_dep
)
endif

Expand Down

0 comments on commit 8639bc4

Please sign in to comment.