Browse Source

core update

Kajetan Johannes Hammerle 2 years ago
parent
commit
6072515d1f
2 changed files with 5 additions and 5 deletions
  1. 4 4
      meson.build
  2. 1 1
      subprojects/gaming-core

+ 4 - 4
meson.build

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

+ 1 - 1
subprojects/gaming-core

@@ -1 +1 @@
-Subproject commit 9f8f0ba852050c794b5ce84c8d268667914d8d40
+Subproject commit bf440d867ea41cbea5356e8531e68d3207b4806f