Reorganize file layout.

Move 'UI' ro 'Resources'.
This commit is contained in:
SET
2022-10-17 15:59:43 +02:00
parent e9a776d0a7
commit 6b37b9b9f7
8 changed files with 4 additions and 4 deletions

View File

@@ -15,8 +15,8 @@ add_executable(T7
PedalManager.h PedalManager.cpp PedalManager.h PedalManager.cpp
KeyboardSimulation.h KeyboardSimulation.cpp KeyboardSimulation.h KeyboardSimulation.cpp
XT7Main.h XT7Main.cpp XT7Main.h XT7Main.cpp
UI/t7app.h UI/t7app.cpp Resources/UI/t7app.h Resources/UI/t7app.cpp
UI/t7main.h UI/t7main.cpp Resources/UI/t7main.h Resources/UI/t7main.cpp
) )
install(TARGETS T7 RUNTIME DESTINATION bin) install(TARGETS T7 RUNTIME DESTINATION bin)

View File

@@ -24,7 +24,7 @@
////@end includes ////@end includes
#include "t7app.h" #include "t7app.h"
#include "../XT7Main.h" #include "../../XT7Main.h"
////@begin XPM images ////@begin XPM images
////@end XPM images ////@end XPM images

View File

@@ -10,7 +10,7 @@
#ifndef XT7MAIN_H #ifndef XT7MAIN_H
#define XT7MAIN_H #define XT7MAIN_H
#include "UI/t7main.h" #include "Resources/UI/t7main.h"
#include "PedalManager.h" #include "PedalManager.h"
#include "KeyboardSimulation.h" #include "KeyboardSimulation.h"
#include <wx/config.h> #include <wx/config.h>