meson.build 444 B

1234567891011121314
  1. project('convex hull', 'cpp')
  2. sources = ['utils/Random.cpp', 'Main.cpp', 'rendering/GLFW.cpp', 'rendering/Window.cpp', 'input/Keys.cpp', 'rendering/Shader.cpp', 'Game.cpp', 'rendering/GL.cpp', 'rendering/Renderer.cpp']
  3. glewDep = dependency('glew')
  4. glfwDep = dependency('glfw3')
  5. executable('game_client',
  6. sources: sources,
  7. dependencies : [glewDep, glfwDep],
  8. cpp_args: ['-Wall', '-Wextra', '-pedantic', '-Werror', '-O3'])