Skip to content

Commit

Permalink
[test] compilation fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rkd77 committed Oct 3, 2024
1 parent 6ca72b5 commit 571c377
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/protocol/test/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ TEST_PROGS = \
uri-test$(EXEEXT)

TESTDEPS = \
$(top_builddir)/src/protocol/protocol.obj \
$(top_builddir)/src/protocol/protocol.o \
$(top_builddir)/src/protocol/uri.o \
stub.o

Expand Down
2 changes: 1 addition & 1 deletion src/protocol/test/meson.build
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
idna_dep = dependency('libidn2')

uri_test_files = files('uri-test.c', 'stub.c', meson.current_source_dir()+'/../protocol.cpp', meson.current_source_dir()+'/../uri.c')
uri_test_files = files('uri-test.c', 'stub.c', meson.current_source_dir()+'/../protocol.c', meson.current_source_dir()+'/../uri.c')

exe = executable('uri-test', uri_test_files,
testdeps, dependencies: [iconvdeps, idna_dep, mozjsdeps, wattdeps],
Expand Down

0 comments on commit 571c377

Please sign in to comment.