From 59bd150ad064969f291204a9ee140848d7a34de8 Mon Sep 17 00:00:00 2001 From: jake Date: Tue, 1 Oct 2024 17:24:30 -0700 Subject: [PATCH] changed taregt for main Changed the main.cpp into using the project name variable --- src/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 671849b..133efe2 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -1,4 +1,4 @@ -add_executable(main - main.c +add_executable(${PROJECT} + ${PROJECT}.cpp ) add_subdirectory(Radio)