Skip to content

Commit 9108920

Browse files
link parser source file
1 parent c76dc7e commit 9108920

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

code/logic/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ file(GLOB HEADER_FILES ${CMAKE_CURRENT_SOURCE_DIR}/fossil/*.h)
88

99
# List the source files
1010
set(TEST_CODE
11+
parser.c
1112
error.c
1213
input.c
1314
output.c

code/logic/meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ dir = include_directories('.')
22
cc = meson.get_compiler('c')
33

44
fossil_io_lib = library('fossil-io',
5-
files('input.c', 'output.c', 'error.c', 'soap.c', 'stream.c'),
5+
files('parser.c', 'input.c', 'output.c', 'error.c', 'soap.c', 'stream.c'),
66
install: true,
77
dependencies: cc.find_library('m', required : false),
88
include_directories: dir)

0 commit comments

Comments
 (0)