From c23118e8e48d043e4bb9b4d813a498af8d454d73 Mon Sep 17 00:00:00 2001 From: untir_l <87096069+untir-l@users.noreply.github.com> Date: Thu, 24 Feb 2022 20:27:35 +0530 Subject: Add web app frontend, restructure almost everything - Add web app frontend code - Add .html, .js, .wasm to .gitignore - Restructure Makefile to work with emmake, add build targets for web app, add .html, .js, .wasm to make clean - Explain the pattern in the README - Add explanation of web frontend to README - Restructure README generally for better clarity - Remove "make web app version" from todos in README - Set Doxygen to EXTRACT_ALL so trivial and useless doc comments are not needed when the naming suffices to be explanatory. - Move ascii_binary_str_to_ints to library code in new file hitomezashi_utils.c (and corresponding header) as web app also needs it. - Fix SDL2 include path so it also works with Emscripten - Remove some cluttering and unnecessary doc comments - Improve some doc comments --- lib/hitomezashi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/hitomezashi.c') diff --git a/lib/hitomezashi.c b/lib/hitomezashi.c index 66f7440..c87073f 100644 --- a/lib/hitomezashi.c +++ b/lib/hitomezashi.c @@ -1,5 +1,5 @@ #include "hitomezashi.h" -#include "SDL.h" +#include "SDL2/SDL.h" #include SDL_Color HITOMEZASHI_FG_COLOUR = {.r = 0, .g = 0, .b = 0}; -- cgit v1.2.3-57-g22cb