project('convex hull', 'cpp') 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'] glewDep = dependency('glew') glfwDep = dependency('glfw3') executable('game_client', sources: sources, dependencies : [glewDep, glfwDep], cpp_args: ['-Wall', '-Wextra', '-pedantic', '-Werror'])