diff --git a/CMakeLists.txt b/CMakeLists.txt index dce9283..ccad4df 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -15,8 +15,8 @@ add_executable(T7 PedalManager.h PedalManager.cpp KeyboardSimulation.h KeyboardSimulation.cpp XT7Main.h XT7Main.cpp - UI/t7app.h UI/t7app.cpp - UI/t7main.h UI/t7main.cpp + Resources/UI/t7app.h Resources/UI/t7app.cpp + Resources/UI/t7main.h Resources/UI/t7main.cpp ) install(TARGETS T7 RUNTIME DESTINATION bin) diff --git a/UI/T7.pjd b/Resources/UI/T7.pjd similarity index 100% rename from UI/T7.pjd rename to Resources/UI/T7.pjd diff --git a/UI/T7.rc b/Resources/UI/T7.rc similarity index 100% rename from UI/T7.rc rename to Resources/UI/T7.rc diff --git a/UI/t7app.cpp b/Resources/UI/t7app.cpp similarity index 98% rename from UI/t7app.cpp rename to Resources/UI/t7app.cpp index 5700a25..bc56b82 100644 --- a/UI/t7app.cpp +++ b/Resources/UI/t7app.cpp @@ -24,7 +24,7 @@ ////@end includes #include "t7app.h" -#include "../XT7Main.h" +#include "../../XT7Main.h" ////@begin XPM images ////@end XPM images diff --git a/UI/t7app.h b/Resources/UI/t7app.h similarity index 100% rename from UI/t7app.h rename to Resources/UI/t7app.h diff --git a/UI/t7main.cpp b/Resources/UI/t7main.cpp similarity index 100% rename from UI/t7main.cpp rename to Resources/UI/t7main.cpp diff --git a/UI/t7main.h b/Resources/UI/t7main.h similarity index 100% rename from UI/t7main.h rename to Resources/UI/t7main.h diff --git a/XT7Main.h b/XT7Main.h index e7a16d9..7802f54 100644 --- a/XT7Main.h +++ b/XT7Main.h @@ -10,7 +10,7 @@ #ifndef XT7MAIN_H #define XT7MAIN_H -#include "UI/t7main.h" +#include "Resources/UI/t7main.h" #include "PedalManager.h" #include "KeyboardSimulation.h" #include