Skip to content

Commit

Permalink
fix meson build
Browse files Browse the repository at this point in the history
  • Loading branch information
dolik-rce committed Sep 21, 2022
1 parent f456bd3 commit 784b5ba
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
7 changes: 6 additions & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ sci_cflags += [ '-std=c++17', '-Wno-non-virtual-dtor', '-DNDEBUG', '-DSCI_LEXER'

iregex = include_directories('ctags/gnu_regex')
ifnmatch = include_directories('ctags/fnmatch')
ictags = include_directories('ctags/main', 'ctags/parsers', 'ctags/dsl')
ictags = include_directories('ctags/main', 'ctags/parsers', 'ctags/dsl', 'ctags')
itagmanager = include_directories('src/tagmanager')
iscintilla = include_directories('scintilla/include', 'scintilla/lexilla/include')
igeany = include_directories('src')
Expand Down Expand Up @@ -680,6 +680,11 @@ ctags = static_library('ctags',
'ctags/parsers/typescript.c',
'ctags/parsers/verilog.c',
'ctags/parsers/vhdl.c',
'ctags/peg/peg_common.h',
'ctags/peg/kotlin.c',
'ctags/peg/kotlin.h',
'ctags/peg/kotlin_post.h',
'ctags/peg/kotlin_pre.h',
c_args: geany_cflags + [ '-DG_LOG_DOMAIN="CTags"',
'-DEXTERNAL_PARSER_LIST_FILE="src/tagmanager/tm_parsers.h"' ],
dependencies: deps + [dep_fnmatch, dep_regex],
Expand Down
1 change: 1 addition & 0 deletions tests/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,7 @@ ctags_tests = files([
'ctags/keyword_struct.cs.tags',
'ctags/keyword_virtual.cs.tags',
'ctags/keyword_volatile.cs.tags',
'ctags/kotlin.kt.tags',
'ctags/labels.sql.tags',
'ctags/lanus.for.tags',
'ctags/line_directives.c.tags',
Expand Down

0 comments on commit 784b5ba

Please sign in to comment.