You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
80 lines
1.5 KiB
80 lines
1.5 KiB
project('roguish', 'cpp',
|
|
default_options: [ 'cpp_std=c++20' ])
|
|
|
|
catch2 = dependency('catch2-with-main')
|
|
fmt = dependency('fmt')
|
|
json = dependency('nlohmann_json')
|
|
ftxui_screen = dependency('ftxui-screen')
|
|
ftxui_dom = dependency('ftxui-dom')
|
|
ftxui_component = dependency('ftxui-component')
|
|
sfml = dependency('sfml')
|
|
lua = dependency('lua')
|
|
sol2 = dependency('sol2')
|
|
|
|
dependencies = [
|
|
catch2, fmt,
|
|
ftxui_screen, ftxui_dom,
|
|
ftxui_component, json,
|
|
sfml, lua, sol2
|
|
]
|
|
|
|
runtests = executable('runtests', [
|
|
'dbc.cpp',
|
|
'map.cpp',
|
|
'rand.cpp',
|
|
'sound.cpp',
|
|
'combat.cpp',
|
|
'collider.cpp',
|
|
'ansi_parser.cpp',
|
|
'config.cpp',
|
|
'save.cpp',
|
|
'panel.cpp',
|
|
'render.cpp',
|
|
'tests/fsm.cpp',
|
|
'tests/dbc.cpp',
|
|
'tests/map.cpp',
|
|
'tests/collider.cpp',
|
|
'tests/components.cpp',
|
|
'tests/sound.cpp',
|
|
'tests/dinkyecs.cpp',
|
|
'tests/ansi_parser.cpp',
|
|
'tests/config.cpp',
|
|
'tests/save.cpp',
|
|
'tests/render.cpp',
|
|
'tests/panel.cpp',
|
|
],
|
|
dependencies: dependencies)
|
|
|
|
roguish = executable('roguish', [
|
|
'dbc.cpp',
|
|
'main.cpp',
|
|
'map.cpp',
|
|
'gui.cpp',
|
|
'rand.cpp',
|
|
'sound.cpp',
|
|
'collider.cpp',
|
|
'combat.cpp',
|
|
'systems.cpp',
|
|
'ansi_parser.cpp',
|
|
'render.cpp',
|
|
'config.cpp',
|
|
'save.cpp',
|
|
'panel.cpp',
|
|
],
|
|
dependencies: dependencies)
|
|
|
|
img2ansi = executable('img2ansi', [
|
|
'dbc.cpp',
|
|
'panel.cpp',
|
|
'ansi_parser.cpp',
|
|
'render.cpp',
|
|
'scratchpad/img2ansi.cpp'
|
|
],
|
|
dependencies: dependencies)
|
|
|
|
luatest = executable('luatest', [
|
|
'scratchpad/luatest.cpp'
|
|
],
|
|
dependencies: dependencies)
|
|
|
|
test('tests', runtests)
|
|
|