moved the PC app source to the src_pc directory

This fixes an issue with Arduino IDE which opens all .c files
(even unrelated) in the same directory when the .ino file is opened.
Fixes compilation error described in issue #10
This commit is contained in:
ole00 2021-06-22 19:53:40 +01:00
parent 2824eebfbc
commit 935d52e12b
5 changed files with 3 additions and 3 deletions

View File

@ -1 +1 @@
gcc -g3 -O0 -o afterburner afterburner.c
gcc -g3 -O0 -o afterburner src_pc/afterburner.c

View File

@ -1,4 +1,4 @@
# path to your win32 cross-compiler
CC=~/opt/mingw32/bin/i686-w64-mingw32-gcc
$CC -g3 -O0 -o afterburner_w32.exe afterburner.c -D_USE_WIN_API_
$CC -g3 -O0 -o afterburner_w32.exe src_pc/afterburner.c -D_USE_WIN_API_

View File

@ -1,4 +1,4 @@
# path to your Win64 cross-compiler
CC=~/opt/mingw64/bin/x86_64-w64-mingw32-gcc
$CC -g3 -O0 -o afterburner_w64.exe afterburner.c -D_USE_WIN_API_
$CC -g3 -O0 -o afterburner_w64.exe src_pc/afterburner.c -D_USE_WIN_API_