Skip to content

removed unecessary package #5

removed unecessary package

removed unecessary package #5

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 ninja-build
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 -G Ninja ..
ninja
ls
- name: package_setup
working-directory: ./story-editor
run : |
make package
ls