mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-10-31 23:45:07 +01:00
2d6aca4563
* build: Rework CI and move all bundling into new build target. * ci: Use "mingw" in msys2 release names for compatibility. * ci: Use "osx" in macOS release names for compatibility. * ci: Disable macOS upload. Will be moved to a separate PR for canary merge.
15 lines
292 B
Bash
Executable File
15 lines
292 B
Bash
Executable File
#!/bin/bash -ex
|
|
|
|
echo -e "\e[1m\e[33mBuild tools information:\e[0m"
|
|
cmake --version
|
|
gcc -v
|
|
tx --version
|
|
|
|
mkdir build && cd build
|
|
cmake .. -DENABLE_QT_TRANSLATION=ON -DGENERATE_QT_TRANSLATION=ON -DCMAKE_BUILD_TYPE=Release -DENABLE_SDL2=OFF
|
|
make translation
|
|
cd ..
|
|
|
|
cd dist/languages
|
|
tx push -s
|