Skip to content

fix windows build, new build script for win32 setup executable genera… #10

fix windows build, new build script for win32 setup executable genera…

fix windows build, new build script for win32 setup executable genera… #10

Workflow file for this run

name: BuildStoryEditor-Linux
on:
workflow_dispatch: {}
push:
branches:
- main
jobs:
build_win:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- name: Install packages
run : |
sudo apt-get update -qq
sudo apt-get install build-essential
sudo apt-get install cmake
sudo apt install mesa-common-dev libgl1-mesa-dev libgles2-mesa-dev
- name: build
working-directory: ./story-editor
run : |
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Release ..
ls
- name: package_setup
working-directory: ./story-editor/build
run : |
make package
ls