2021-12-30 01:48:17 +01:00
|
|
|
sources += files(
|
2022-04-09 00:54:06 +02:00
|
|
|
'better_beats.cpp',
|
2022-03-31 03:50:15 +02:00
|
|
|
'better_chart.cpp',
|
2022-04-09 00:54:06 +02:00
|
|
|
'better_hakus.cpp',
|
2022-03-31 03:50:15 +02:00
|
|
|
'better_metadata.cpp',
|
2022-03-23 02:20:07 +01:00
|
|
|
'better_note.cpp',
|
|
|
|
'better_notes.cpp',
|
|
|
|
'better_song.cpp',
|
|
|
|
'better_timing.cpp',
|
2021-12-31 00:57:06 +01:00
|
|
|
'chart.cpp',
|
2022-04-09 00:54:06 +02:00
|
|
|
'chart_state.cpp',
|
2022-11-09 01:01:58 +01:00
|
|
|
'clipboard.cpp',
|
2022-11-18 01:48:53 +01:00
|
|
|
'config.cpp',
|
2021-12-31 00:57:06 +01:00
|
|
|
'editor_state.cpp',
|
2022-04-01 02:30:32 +02:00
|
|
|
'file_dialogs.cpp',
|
2021-12-31 00:57:06 +01:00
|
|
|
'fumen.cpp',
|
2022-04-09 00:54:06 +02:00
|
|
|
'history_item.cpp',
|
2022-03-24 01:42:41 +01:00
|
|
|
'imgui_extras.cpp',
|
2022-04-16 02:26:37 +02:00
|
|
|
'json_decimal_handling.cpp',
|
2021-12-31 00:57:06 +01:00
|
|
|
'ln_marker.cpp',
|
2022-04-16 05:25:03 +02:00
|
|
|
'long_note_dummy.cpp',
|
2021-12-31 00:57:06 +01:00
|
|
|
'main.cpp',
|
|
|
|
'marker.cpp',
|
2022-04-19 23:13:18 +02:00
|
|
|
'mp3_reader.cpp',
|
2021-12-31 00:57:06 +01:00
|
|
|
'note.cpp',
|
|
|
|
'notification.cpp',
|
|
|
|
'notifications_queue.cpp',
|
2022-04-04 22:03:10 +02:00
|
|
|
'playfield.cpp',
|
2021-12-31 00:57:06 +01:00
|
|
|
'sound_effect.cpp',
|
2022-04-09 00:54:06 +02:00
|
|
|
'special_numeric_types.cpp',
|
2021-12-31 00:57:06 +01:00
|
|
|
'toolbox.cpp',
|
2021-12-30 01:48:17 +01:00
|
|
|
)
|
|
|
|
|
2022-11-15 22:04:29 +01:00
|
|
|
conf_data = configuration_data()
|
|
|
|
|
|
|
|
conf_data.set('name', meson.project_name())
|
|
|
|
conf_data.set('version', meson.project_version())
|
|
|
|
|
|
|
|
configure_file(
|
|
|
|
input: 'compile_time_info.hpp.in',
|
|
|
|
output: 'compile_time_info.hpp',
|
|
|
|
configuration: conf_data,
|
|
|
|
)
|
|
|
|
|
|
|
|
configuration_inc = include_directories('.')
|
|
|
|
|
|
|
|
|
2022-05-11 00:09:02 +02:00
|
|
|
subdir('custom_sfml_audio')
|
2022-04-10 13:08:41 +02:00
|
|
|
subdir('widgets')
|
|
|
|
|
2022-04-11 01:25:24 +02:00
|
|
|
if get_option('tests')
|
|
|
|
subdir('tests')
|
|
|
|
endif
|