Skip to content

Commit

Permalink
libnixf: arrange project structure
Browse files Browse the repository at this point in the history
  • Loading branch information
inclyc committed Jan 16, 2024
1 parent 9dffbc5 commit a5547b2
Show file tree
Hide file tree
Showing 10 changed files with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions libnixf/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ libnixf_inc = include_directories('include')

libnixf = library(
'nixf',
'lib/Basic/Diagnostic.cpp',
'lib/Parse/Lexer.cpp',
'lib/Parse/Parser.cpp',
'src/Basic/Diagnostic.cpp',
'src/Parse/Lexer.cpp',
'src/Parse/Parser.cpp',
include_directories: libnixf_inc,
dependencies: libnixf_deps,
install: true,
Expand All @@ -28,10 +28,10 @@ nixf = declare_dependency(

test('unit/libnixf/Parse',
executable('unit-libnixf-parse',
'lib/Parse/test/Lexer.cpp',
'lib/Parse/test/Parser.cpp',
'test/Parse/Lexer.cpp',
'test/Parse/Parser.cpp',
dependencies: [ nixf, gtest_main ],
include_directories: [ 'lib/Parse' ] # Private headers
include_directories: [ 'src/Parse' ] # Private headers
)
)

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit a5547b2

Please sign in to comment.