added common include on linux
authorBrendan Hansen <brendan.f.hansen@gmail.com>
Fri, 19 Nov 2021 18:52:31 +0000 (12:52 -0600)
committerBrendan Hansen <brendan.f.hansen@gmail.com>
Fri, 19 Nov 2021 18:52:31 +0000 (12:52 -0600)
Makefile
docs/todo.md

index 25d8e61a3b6200164cb28985c9831cf29c692cd9..4208375ce85c0501233ef79c6ca398ba7ab9849d 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -2,7 +2,7 @@ CC=gcc
 WARNINGS=-Wimplicit -Wmisleading-indentation -Wparentheses -Wsequence-point -Wreturn-type -Wshift-negative-value -Wunused-but-set-parameter -Wunused-but-set-variable -Wunused-function -Wunused-label -Wmaybe-uninitialized -Wsign-compare -Wstrict-overflow -Wduplicated-branches -Wduplicated-cond -Wtrigraphs -Waddress -Wlogical-op
 FLAGS=$(WARNINGS) -g3 -O2
 
-INCLUDES=-I./include -I./lib/linux_x86_64/include
+INCLUDES=-I./include -I./lib/linux_x86_64/include -I./lib/common/include
 LIBS=-L./lib/linux_x86_64/lib -lwasmer -Wl,-rpath=./lib/linux_x86_64/lib -lglfw -lGL -lm
 TARGET=./bin/heartbreak
 
@@ -20,6 +20,6 @@ clean:
 $(TARGET): $(OBJECT_FILES)
        $(CC) $(FLAGS) -o $@ $^ $(LIBS)
 
-all: $(TARGET) tests/simp.wasm
+all: $(TARGET) tests/minesweeper.wasm
 run: all
-       ./bin/heartbreak tests/simp.wasm
+       ./bin/heartbreak tests/minesweeper.wasm
index 511ea5e12264df5b9c7ffbeae60b140d2e65d753..65928c214357080a719738ccfa71aeaab4642eb3 100644 (file)
@@ -43,5 +43,11 @@ In the meantime, it would be possible (and rather easy) to look for special expo
 like __heartbreak_keydown which would then get registered as event handlers. In Onyx, this won't
 create too much of a mess because in qhb.onyx there can simply be a #if #defined(keydown) to test
 if a keydown handler was defined, then it would export that function as __heartbreak_keydown for
-example. This will won't in the meantime while Wasmer gets their shit together and actually provides
+example. This will work in the meantime while Wasmer gets their shit together and actually provides
 the API that they claim to.
+
+
+More graphics:
+[ ] Canvases (renderable surfaces)
+[ ] Meshes
+[ ] Shaders