Making hqn dependency accessible
This commit is contained in:
parent
f494d60887
commit
eb018e683c
10
meson.build
10
meson.build
|
@ -8,6 +8,11 @@ project('quickerNES','c','cpp',
|
||||||
# Loading dependencies
|
# Loading dependencies
|
||||||
subdir('source')
|
subdir('source')
|
||||||
|
|
||||||
|
# Grabbing hqn dependency
|
||||||
|
|
||||||
|
hqnSubproject = subproject('hqn')
|
||||||
|
hqnDependency = hqnSubproject.get_variable('hqnDependency')
|
||||||
|
|
||||||
# Do not build any targets if this is a subproject
|
# Do not build any targets if this is a subproject
|
||||||
if meson.is_subproject() == false
|
if meson.is_subproject() == false
|
||||||
|
|
||||||
|
@ -19,11 +24,6 @@ commonCompileArgs = [ '-Wfatal-errors', '-Wall']
|
||||||
jaffarCommonSubproject = subproject('jaffarCommon')
|
jaffarCommonSubproject = subproject('jaffarCommon')
|
||||||
jaffarCommonDependency = jaffarCommonSubproject.get_variable('jaffarCommonDependency')
|
jaffarCommonDependency = jaffarCommonSubproject.get_variable('jaffarCommonDependency')
|
||||||
|
|
||||||
# Grabbing hqn dependency
|
|
||||||
|
|
||||||
hqnSubproject = subproject('hqn')
|
|
||||||
hqnDependency = hqnSubproject.get_variable('hqnDependency')
|
|
||||||
|
|
||||||
# Building playback tool
|
# Building playback tool
|
||||||
if get_option('buildPlayer') == true
|
if get_option('buildPlayer') == true
|
||||||
executable('player',
|
executable('player',
|
||||||
|
|
Loading…
Reference in New Issue