mirror of
https://gitlab.com/dosowisko.net/libsuperderpy.git
synced 2024-12-12 20:18:00 +01:00
6 lines
252 B
CMake
6 lines
252 B
CMake
file(GLOB_RECURSE FLAC_FILES RELATIVE ${DATADIR} ${DATADIR}/*.flac)
|
|
|
|
foreach(file IN LISTS FLAC_FILES)
|
|
execute_process(COMMAND oggenc -Q -b 192 --resample 44100 ${file} WORKING_DIRECTORY ${DATADIR})
|
|
file(REMOVE ${DATADIR}/${file})
|
|
endforeach(file)
|