1
0
mirror of https://github.com/bdring/Grbl_Esp32.git synced 2025-08-19 21:02:02 +02:00

Fixed C++ includes (#518)

* Moved all files to the src folder

* Removed all cpp includes; fixed by including the header file where needed

* Fixed build scripts and machine.h

* Removed temp file. sigh.

Co-authored-by: Stefan de Bruijn <stefan@nubilosoft.com>
This commit is contained in:
Stefan de Bruijn
2020-08-08 20:18:05 +02:00
committed by GitHub
parent 82b74da72d
commit 7b6b4b2087
139 changed files with 14 additions and 21 deletions

View File

@@ -33,7 +33,7 @@ BuildMachine () {
}
# Build all the machines
for file in `ls ./Grbl_Esp32/Machines/*`; do
for file in `ls ./Grbl_Esp32/src/Machines/*`; do
base=`basename $file`
BuildMachine $base ""
done