File indexing completed on 2024-09-15 06:19:51
0001 #!/bin/bash 0002 # 0003 # generate_all_rcc.sh 0004 # 0005 # Copyright (C) 2017 Johnny Jazeix 0006 # 0007 # Generates Qt binary resource files (.rcc) for lang images 0008 # 0009 # Usage: 0010 # cd git/src/lang-activity/resources/lang 0011 # generate_lang_rcc.sh 0012 # 0013 # Results will be written to $PWD/.rcc/ which is supposed be synced to the 0014 # upstream location. 0015 # 0016 0017 echo "Building background music" 0018 cd background-music 0019 ./update_backgroundMusic.sh 0020 echo "Building voices" 0021 cd ../voices 0022 ./update_voices.sh 0023 #echo "Building words" -> this is already done by the update_voices.sh script 0024 #cd ../words 0025 #./generate_lang_rcc.sh words-webp 0026