Skip to content

Commit

Permalink
IREPEAT_dep irepeat_dep breaking change
Browse files Browse the repository at this point in the history
wrapDB appears to require all lowercase names.

meson client projects will have to update to use lowercase.
  • Loading branch information
willwray committed Jun 18, 2023
1 parent 08a7979 commit 2823d33
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions meson.build
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# SPDX-FileCopyrightText: 2023 The Lemuriad <[email protected]>
# SPDX-License-Identifier: BSL-1.0
project('IREPEAT', 'cpp',
project('irepeat', 'cpp',
default_options : ['warning_level=3'],
version : 'v0.6'
)
Expand All @@ -13,7 +13,7 @@ else
extra_args = []
endif

IREPEAT_dep = declare_dependency(
irepeat_dep = declare_dependency(
include_directories : include_directories('.'),
compile_args : extra_args
).partial_dependency(includes : true, compile_args : true)
Expand All @@ -22,12 +22,12 @@ if get_option('tests').disable_auto_if(meson.is_subproject()).allowed()

test('test IREPEAT',
executable('test_IREPEAT', 'test_IREPEAT.cpp',
dependencies : [IREPEAT_dep])
dependencies : [irepeat_dep])
)

test('test VREPEAT',
executable('test_VREPEAT', 'test_VREPEAT.cpp',
dependencies : [IREPEAT_dep])
dependencies : [irepeat_dep])
)

endif

0 comments on commit 2823d33

Please sign in to comment.