Making hqn dependency accessible

This commit is contained in:
SergioMartin86 2024-05-19 12:14:36 +02:00
parent f494d60887
commit eb018e683c
1 changed files with 5 additions and 5 deletions

View File

@ -8,6 +8,11 @@ project('quickerNES','c','cpp',
# Loading dependencies
subdir('source')
# Grabbing hqn dependency
hqnSubproject = subproject('hqn')
hqnDependency = hqnSubproject.get_variable('hqnDependency')
# Do not build any targets if this is a subproject
if meson.is_subproject() == false
@ -19,11 +24,6 @@ commonCompileArgs = [ '-Wfatal-errors', '-Wall']
jaffarCommonSubproject = subproject('jaffarCommon')
jaffarCommonDependency = jaffarCommonSubproject.get_variable('jaffarCommonDependency')
# Grabbing hqn dependency
hqnSubproject = subproject('hqn')
hqnDependency = hqnSubproject.get_variable('hqnDependency')
# Building playback tool
if get_option('buildPlayer') == true
executable('player',