|
@@ -40,16 +40,16 @@ sources_test = ['tests/Main.cpp']
|
|
compiler = meson.get_compiler('cpp')
|
|
compiler = meson.get_compiler('cpp')
|
|
args = compiler.get_supported_arguments(['-Wall', '-Wextra', '-pedantic', '-Werror', '-DLOG_LEVEL=4'])
|
|
args = compiler.get_supported_arguments(['-Wall', '-Wextra', '-pedantic', '-Werror', '-DLOG_LEVEL=4'])
|
|
|
|
|
|
-libgamingcore_proj = subproject('gaming-core')
|
|
+gamingcore_proj = subproject('gaming-core')
|
|
-libgamingcore_dep = libgamingcore_proj.get_variable('libgamingcore_dep')
|
|
+gamingcore_dep = gamingcore_proj.get_variable('gamingcore_dep')
|
|
|
|
|
|
common = static_library('common',
|
|
common = static_library('common',
|
|
sources: src_common,
|
|
sources: src_common,
|
|
- dependencies: [libgamingcore_dep],
|
|
+ dependencies: [gamingcore_dep],
|
|
cpp_args: args)
|
|
cpp_args: args)
|
|
common_dep = declare_dependency(
|
|
common_dep = declare_dependency(
|
|
link_with: common,
|
|
link_with: common,
|
|
- include_directories: libgamingcore_proj.get_variable('libgamingcore_include'))
|
|
+ include_directories: gamingcore_proj.get_variable('gamingcore_include'))
|
|
|
|
|
|
if host_machine.system() == 'linux'
|
|
if host_machine.system() == 'linux'
|
|
liblonelytiger_proj = subproject('lonely-tiger')
|
|
liblonelytiger_proj = subproject('lonely-tiger')
|