mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-01 16:05:07 +01:00
3b6ffd9c27
* Improve directory creation in WindowsCopyFiles.cmake * Release msvc compiled binaries as an alternative to mingw releases * msvc: do not ship .pdb files * msvc: Copy necessary files to the release * windows-msvc: enable compatibility reporting translation was disabled because the bundled qt doesn't have the necessary component Co-authored-by: Michał Janiszewski <janisozaur@users.noreply.github.com>
22 lines
617 B
Bash
22 lines
617 B
Bash
#!/bin/sh -ex
|
|
|
|
mkdir build && cd build
|
|
cmake .. \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-G Ninja \
|
|
-DCMAKE_TOOLCHAIN_FILE="$(pwd)/../CMakeModules/MSVCCache.cmake" \
|
|
-DCITRA_USE_CCACHE=ON \
|
|
-DCITRA_USE_BUNDLED_QT=1 \
|
|
-DENABLE_QT_TRANSLATION=OFF \
|
|
-DCITRA_ENABLE_COMPATIBILITY_REPORTING=${ENABLE_COMPATIBILITY_REPORTING:-"OFF"} \
|
|
-DENABLE_COMPATIBILITY_LIST_DOWNLOAD=ON \
|
|
-DUSE_DISCORD_PRESENCE=ON \
|
|
-DENABLE_MF=ON \
|
|
-DENABLE_FFMPEG_VIDEO_DUMPER=ON
|
|
|
|
ninja
|
|
# show the caching efficiency
|
|
buildcache -s
|
|
|
|
ctest -VV -C Release || echo "::error ::Test error occurred on Windows MSVC build"
|