Rearrangements; Audio support

This commit is contained in:
2025-08-30 21:06:56 +03:00
parent 503db60c60
commit 657107b4ae
30 changed files with 95935 additions and 57 deletions

28
audio/gui/CMakeLists.txt Normal file
View File

@@ -0,0 +1,28 @@
project(audio)
set(SOUNDS
click_2.wav
click.wav
load.wav
misc_menu_2.wav
misc_menu_3.wav
misc_menu_4.wav
misc_menu.wav
misc_sound.wav
negative_2.wav
negative.wav
positive.wav
save.wav
sharp_echo.wav
)
set(DST_SOUNDS)
foreach(SOUND_FILE ${SOUNDS})
set(FILE_OUT ${CMAKE_CURRENT_BINARY_DIR}/${SOUND_FILE})
set(FILE_IN ${CMAKE_CURRENT_SOURCE_DIR}/${SOUND_FILE})
add_custom_command(OUTPUT ${FILE_OUT}
COMMAND ${CMAKE_COMMAND} -E copy ${FILE_IN} ${FILE_OUT}
DEPENDS ${FILE_IN}
)
list(APPEND DST_SOUNDS ${FILE_OUT})
endforeach()
add_custom_target(audio_data_gui ALL DEPENDS ${DST_SOUNDS})

BIN
audio/gui/click.wav LFS Normal file

Binary file not shown.

BIN
audio/gui/click_2.wav LFS Normal file

Binary file not shown.

BIN
audio/gui/load.wav LFS Normal file

Binary file not shown.

BIN
audio/gui/misc_menu.wav LFS Normal file

Binary file not shown.

BIN
audio/gui/misc_menu_2.wav LFS Normal file

Binary file not shown.

BIN
audio/gui/misc_menu_3.wav LFS Normal file

Binary file not shown.

BIN
audio/gui/misc_menu_4.wav LFS Normal file

Binary file not shown.

BIN
audio/gui/misc_sound.wav LFS Normal file

Binary file not shown.

BIN
audio/gui/negative.wav LFS Normal file

Binary file not shown.

BIN
audio/gui/negative_2.wav LFS Normal file

Binary file not shown.

BIN
audio/gui/positive.wav LFS Normal file

Binary file not shown.

BIN
audio/gui/save.wav LFS Normal file

Binary file not shown.

BIN
audio/gui/sharp_echo.wav LFS Normal file

Binary file not shown.