develop #15

Merged
cromer merged 64 commits from develop into master 2023-02-23 01:11:48 -03:00
16 changed files with 4 additions and 3 deletions
Showing only changes of commit 36b8889a62 - Show all commits

View File

@ -6,10 +6,14 @@ configure_file(input : 'version.h.in',
configuration : conf_data
)
subdir('models')
obelisk_lib_sources = files(
'obelisk.cpp'
)
obelisk_lib_sources += obelisk_model_sources
sqlite3 = dependency('sqlite3')
incdirs = include_directories(['.', 'include'])

View File

@ -12,9 +12,6 @@ sqlite3 = dependency('sqlite3')
subdir('ast')
obelisk_sources += obelisk_ast_sources
subdir('models')
obelisk_sources += obelisk_model_sources
r = run_command('llvm-config', '--cppflags', check : true)
cpp_args = ' ' + r.stdout().replace('\n', ' ').replace('-I', '-isystem')