From c6d66517f3b57ea649ca0566fc3c24480f651182 Mon Sep 17 00:00:00 2001 From: heck <heck@pep.foundation> Date: Mon, 9 Sep 2024 23:39:30 +0200 Subject: [PATCH] the source folder is called 'src' --- src/Makefile | 9 +++++++++ {Blink => src}/main.cpp | 0 2 files changed, 9 insertions(+) create mode 100644 src/Makefile rename {Blink => src}/main.cpp (100%) diff --git a/src/Makefile b/src/Makefile new file mode 100644 index 0000000..d7d2565 --- /dev/null +++ b/src/Makefile @@ -0,0 +1,9 @@ +include ../Makefile.conf + + +SRC_CXX = main.cpp + +# libDaisy Makefile variables +SYSTEM_FILES_DIR=$(LIBDAISY_DIR)/core +CPP_SOURCES=$(SRC_CXX) +include $(SYSTEM_FILES_DIR)/Makefile diff --git a/Blink/main.cpp b/src/main.cpp similarity index 100% rename from Blink/main.cpp rename to src/main.cpp