meson.build 404 B

12345678910111213141516
  1. project('spg project', 'cpp')
  2. src = ['Main.cpp',
  3. 'Game.cpp',
  4. 'MarchingCubes.cpp',
  5. 'LayeredFramebuffer.cpp',
  6. 'Texture3D.cpp',
  7. ]
  8. libgamingcore_proj = subproject('gaming-core')
  9. libgamingcore_dep = libgamingcore_proj.get_variable('libgamingcore_dep')
  10. executable('demo',
  11. sources: src,
  12. dependencies : [libgamingcore_dep],
  13. cpp_args: ['-Wall', '-Wextra', '-pedantic', '-Werror'])