meson.build 417 B

1234567
  1. project('gaming core tests', 'cpp')
  2. sources = ['Main.cpp', 'tests/Test.cpp', 'tests/ArrayTests.cpp', 'tests/HashMapTests.cpp', 'tests/ListTests.cpp', 'tests/BitArrayTests.cpp', 'tests/StringBufferTests.cpp', 'tests/RandomTests.cpp', 'utils/Random.cpp', 'tests/RingBufferTests.cpp', 'tests/SplitStringTests.cpp']
  3. executable('tests',
  4. sources: sources,
  5. cpp_args: ['-Wall', '-Wextra', '-pedantic', '-Werror'])