12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- project('gamingcore', 'cpp')
- src = [
- 'images/PNGReader.cpp',
- 'input/Button.cpp',
- 'input/Buttons.cpp',
- 'input/TextInput.cpp',
- 'math/Frustum.cpp',
- 'math/Matrix.cpp',
- 'math/Plane.cpp',
- 'math/Quaternion.cpp',
- 'math/Vector.cpp',
- 'network/Client.cpp',
- 'network/ENet.cpp',
- 'network/Packet.cpp',
- 'network/Server.cpp',
- 'rendering/Attributes.cpp',
- 'rendering/FileTexture.cpp',
- 'rendering/Shader.cpp',
- 'rendering/Texture.cpp',
- 'rendering/TextureFormat.cpp',
- 'rendering/VertexBuffer.cpp',
- 'rendering/Window.cpp',
- 'rendering/WindowOptions.cpp',
- 'utils/BitArray.cpp',
- 'utils/Buffer.cpp',
- 'utils/Clock.cpp',
- 'utils/Error.cpp',
- 'utils/Logger.cpp',
- 'utils/Random.cpp',
- 'utils/Size.cpp',
- 'wrapper/GL.cpp',
- ]
- src_tests = [
- 'Main.cpp',
- 'tests/ArrayListTests.cpp',
- 'tests/ArrayTests.cpp',
- 'tests/BitArrayTests.cpp',
- 'tests/BufferTests.cpp',
- 'tests/ClockTests.cpp',
- 'tests/ColorTests.cpp',
- 'tests/FrustumTests.cpp',
- 'tests/HashMapTests.cpp',
- 'tests/ListTests.cpp',
- 'tests/MatrixStackTests.cpp',
- 'tests/MatrixTests.cpp',
- 'tests/NetworkTests.cpp',
- 'tests/PNGReaderTests.cpp',
- 'tests/PlaneTests.cpp',
- 'tests/QuaternionTests.cpp',
- 'tests/RandomTests.cpp',
- 'tests/RingBufferTests.cpp',
- 'tests/SplitStringTests.cpp',
- 'tests/StackTests.cpp',
- 'tests/StringBufferTests.cpp',
- 'tests/Test.cpp',
- 'tests/TypedBufferTests.cpp',
- 'tests/UniquePointerTests.cpp',
- 'tests/UtilsTests.cpp',
- 'tests/VectorTests.cpp',
- ]
- thread_dep = dependency('threads')
- glew_dep = dependency('glew')
- glfw_dep = dependency('glfw3')
- png_dep = dependency('libpng')
- args = ['-Wall', '-Wextra', '-pedantic', '-Werror']
- inc = include_directories('.')
- libgamingcore = static_library('gamingcore',
- sources: src,
- include_directories : inc,
- dependencies : [thread_dep, glew_dep, glfw_dep, png_dep],
- cpp_args: args)
- libgamingcore_dep = declare_dependency(include_directories : inc, link_with : libgamingcore)
- executable('tests',
- sources: src_tests,
- dependencies : libgamingcore_dep,
- cpp_args: args + ['-DLOG_LEVEL=4'])
|