meson.build 314 B

12345678910
  1. project('fanorona server bot', 'cpp')
  2. sources = ['Main.cpp', 'Socket.cpp', 'Client.cpp', 'Utils.cpp', 'Game.cpp', 'String.cpp']
  3. threadDep = dependency('threads')
  4. executable('fanorona_server_bot',
  5. sources: sources,
  6. dependencies : [threadDep],
  7. cpp_args: ['-Wall', '-Wextra', '-pedantic', '-Werror'])