Fixing build in jaffarPlus

This commit is contained in:
Sergio Martin 2024-02-08 19:30:37 +01:00
parent d1cc638517
commit 318e1822bd
2 changed files with 16 additions and 6 deletions

View File

@ -13,6 +13,15 @@ subdir('source')
# Common application flags
commonCompileArgs = [ '-Wfatal-errors', '-Wall']
# Common includes
commonIncludes = include_directories(['extern'])
# Common sources
commonSources = [
'extern/jaffarCommon/extern/metrohash128/metrohash128.cpp',
'extern/jaffarCommon/extern/xdelta3/xdelta3.c',
]
# Building playback tool
quickerNESPlayerSrc = [
@ -30,7 +39,8 @@ if meson.is_subproject() == false
cpp_args : [ commonCompileArgs, '-DNCURSES' ],
dependencies : [ quickerNESDependency, toolDependency, dependency('sdl2'), dependency('SDL2_image') ],
link_args : [ '-lncurses' ],
sources : quickerNESPlayerSrc
sources : [ commonSources, quickerNESPlayerSrc ],
include_directories : [ commonIncludes ]
)
endif
@ -40,6 +50,8 @@ if meson.is_subproject() == false
'source/tester.cpp',
cpp_args : [ commonCompileArgs, '-Werror' ],
dependencies : [ quickerNESDependency, toolDependency ],
sources : [ commonSources ],
include_directories : [ commonIncludes ]
)
# Building tester tool for the original QuickNES
@ -48,6 +60,8 @@ if meson.is_subproject() == false
'source/tester.cpp',
cpp_args : [ commonCompileArgs, '-w', '-DDISABLE_AUTO_FILE', '-D__LIBRETRO__', '-DNDEBUG', '-DBLARGG_NONPORTABLE' ],
dependencies : [ quickNESDependency, toolDependency ],
sources : [ commonSources ],
include_directories : [ commonIncludes ]
)
# Building tests

View File

@ -5,9 +5,5 @@ subdir('quickerNES')
# Tool Configuration
toolDependency = declare_dependency(
include_directories : include_directories(['.', '../extern']),
sources : [
'../extern/jaffarCommon/extern/metrohash128/metrohash128.cpp',
'../extern/jaffarCommon/extern/xdelta3/xdelta3.c',
]
include_directories : include_directories(['.']),
)