open-story-teller/story-editor/build_win32.sh

11 lines
358 B
Bash
Executable file

docker build -t cpp-dev .
docker run -it \
-v $(pwd)/..:/workspace \
cpp-dev \
bash \
-c "mkdir -p /workspace/story-editor/build-win32 && \
cd /workspace/story-editor/build-win32 && \
git config --global http.sslverify false && \
cmake -DCMAKE_TOOLCHAIN_FILE=../cmake/mingw-w64-x86_64.cmake .. && \
make && \
make package"