From aa21866590b2d197d139e1cfbfa02e298916d4d5 Mon Sep 17 00:00:00 2001 From: mjmagee991 Date: Sat, 9 Mar 2024 10:50:40 -0500 Subject: [PATCH] Updated Folder Structure to New Standards --- CMakeLists.txt | 2 +- include/{HUDL => }/HUDL.hpp | 2 +- src/{HUDL => }/HUDL.cpp | 2 +- targets/CMakeLists.txt | 2 +- targets/{HUDL => DEV1-HUDL}/CMakeLists.txt | 2 +- targets/{HUDL => DEV1-HUDL}/main.cpp | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) rename include/{HUDL => }/HUDL.hpp (99%) rename src/{HUDL => }/HUDL.cpp (99%) rename targets/{HUDL => DEV1-HUDL}/CMakeLists.txt (90%) rename targets/{HUDL => DEV1-HUDL}/main.cpp (99%) diff --git a/CMakeLists.txt b/CMakeLists.txt index b64a58b..09f0628 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -44,7 +44,7 @@ add_library(${PROJECT_NAME} STATIC) # Add sources target_sources(${PROJECT_NAME} PRIVATE - src/HUDL/HUDL.cpp + src/HUDL.cpp ) ############################################################################### diff --git a/include/HUDL/HUDL.hpp b/include/HUDL.hpp similarity index 99% rename from include/HUDL/HUDL.hpp rename to include/HUDL.hpp index dbf3dfa..53cfaa8 100644 --- a/include/HUDL/HUDL.hpp +++ b/include/HUDL.hpp @@ -6,7 +6,7 @@ #include #include #include -#include +#include #define REFRESH_RATE 16128 diff --git a/src/HUDL/HUDL.cpp b/src/HUDL.cpp similarity index 99% rename from src/HUDL/HUDL.cpp rename to src/HUDL.cpp index ac688bb..8b1feb9 100644 --- a/src/HUDL/HUDL.cpp +++ b/src/HUDL.cpp @@ -9,7 +9,7 @@ #include #include #include -#include +#include #include #include diff --git a/targets/CMakeLists.txt b/targets/CMakeLists.txt index 419652d..fc95ded 100644 --- a/targets/CMakeLists.txt +++ b/targets/CMakeLists.txt @@ -1,2 +1,2 @@ # Add all targets -add_subdirectory(HUDL) +add_subdirectory(DEV1-HUDL) diff --git a/targets/HUDL/CMakeLists.txt b/targets/DEV1-HUDL/CMakeLists.txt similarity index 90% rename from targets/HUDL/CMakeLists.txt rename to targets/DEV1-HUDL/CMakeLists.txt index c4f9b63..0f5eca8 100644 --- a/targets/HUDL/CMakeLists.txt +++ b/targets/DEV1-HUDL/CMakeLists.txt @@ -1,6 +1,6 @@ include(${EVT_CORE_DIR}/cmake/evt-core_build.cmake) -project(HUDLmain) +project(DEV1-HUDL) cmake_minimum_required(VERSION 3.15) make_exe(${PROJECT_NAME} main.cpp) diff --git a/targets/HUDL/main.cpp b/targets/DEV1-HUDL/main.cpp similarity index 99% rename from targets/HUDL/main.cpp rename to targets/DEV1-HUDL/main.cpp index ad5359c..114d0ba 100644 --- a/targets/HUDL/main.cpp +++ b/targets/DEV1-HUDL/main.cpp @@ -12,7 +12,7 @@ #include #include -#include +#include namespace IO = EVT::core::IO; namespace DEV = EVT::core::DEV;