diff --git a/CMakeLists.txt b/CMakeLists.txt index ce8c949..fee68f2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -33,12 +33,12 @@ pkg_search_module(GLIB REQUIRED glib-2.0) find_package(LibXml2 REQUIRED) set(PROJECT_SOURCES - tweaks-qt/main.cpp - tweaks-qt/maindialog.ui - tweaks-qt/maindialog.cpp - tweaks-qt/maindialog.h - tweaks-qt/layoutmodel.cpp - tweaks-qt/layoutmodel.h + src/main.cpp + src/maindialog.ui + src/maindialog.cpp + src/maindialog.h + src/layoutmodel.cpp + src/layoutmodel.h src/environment.c src/environment.h src/theme.c diff --git a/tweaks-qt/.clang-format b/src/.clang-format similarity index 100% rename from tweaks-qt/.clang-format rename to src/.clang-format diff --git a/tweaks-qt/.editorconfig b/src/.editorconfig similarity index 100% rename from tweaks-qt/.editorconfig rename to src/.editorconfig diff --git a/tweaks-qt/evdev-lst-layouts.h b/src/evdev-lst-layouts.h similarity index 100% rename from tweaks-qt/evdev-lst-layouts.h rename to src/evdev-lst-layouts.h diff --git a/tweaks-qt/gen-layout-list b/src/gen-layout-list similarity index 100% rename from tweaks-qt/gen-layout-list rename to src/gen-layout-list diff --git a/tweaks-qt/layoutmodel.cpp b/src/layoutmodel.cpp similarity index 100% rename from tweaks-qt/layoutmodel.cpp rename to src/layoutmodel.cpp diff --git a/tweaks-qt/layoutmodel.h b/src/layoutmodel.h similarity index 100% rename from tweaks-qt/layoutmodel.h rename to src/layoutmodel.h diff --git a/tweaks-qt/main.cpp b/src/main.cpp similarity index 100% rename from tweaks-qt/main.cpp rename to src/main.cpp diff --git a/tweaks-qt/maindialog.cpp b/src/maindialog.cpp similarity index 100% rename from tweaks-qt/maindialog.cpp rename to src/maindialog.cpp diff --git a/tweaks-qt/maindialog.h b/src/maindialog.h similarity index 100% rename from tweaks-qt/maindialog.h rename to src/maindialog.h diff --git a/tweaks-qt/maindialog.ui b/src/maindialog.ui similarity index 100% rename from tweaks-qt/maindialog.ui rename to src/maindialog.ui