mirror of
https://github.com/ole00/afterburner.git
synced 2024-11-15 21:10:49 +00:00
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:
parent
2824eebfbc
commit
935d52e12b
@ -1 +1 @@
|
||||
gcc -g3 -O0 -o afterburner afterburner.c
|
||||
gcc -g3 -O0 -o afterburner src_pc/afterburner.c
|
||||
|
@ -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_
|
||||
|
@ -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_
|
||||
|
Loading…
Reference in New Issue
Block a user