Initial graph editor and graph instantiation from file.

This commit is contained in:
Martin Felis
2022-02-11 16:51:18 +01:00
parent fd4785afcd
commit c5b0d1f976
48 changed files with 87227 additions and 41 deletions
+19
View File
@@ -0,0 +1,19 @@
name: Build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
container:
image: docker://nelarius/imnodes-docker-builder:latest
steps:
# This step uses checkout action: https://github.com/actions/checkout
- name: Checkout
uses: actions/checkout@v2
id: checkout
- name: premake5
run: premake5 gmake --sdl-include-path=/usr/include/SDL2
- name: make-debug
run: make all config=debug -j
- name: make-release
run: make all config=release -j