Skip to content

Commit

Permalink
Move models to separate folder
Browse files Browse the repository at this point in the history
  • Loading branch information
neochapay committed Jul 16, 2024
1 parent 7f2afef commit 2ba56eb
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@ file(GLOB_RECURSE QML_JS_FILES *.qml *.js)

set(SRC
main.cpp
controlcenterbuttonsmodel.cpp
controlcenterbuttonsmodel.h
fileutils.cpp
fileutils.h
glacierwindowmodel.cpp
glacierwindowmodel.h
mceconnect.cpp
mceconnect.h
logging.h
logging.cpp
models/glacierwindowmodel.cpp
models/glacierwindowmodel.h
models/controlcenterbuttonsmodel.cpp
models/controlcenterbuttonsmodel.h
${QML_JS_FILES}
)

Expand Down
4 changes: 2 additions & 2 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,14 @@
#include <homewindow.h>
#include <lipstickqmlpath.h>

#include "controlcenterbuttonsmodel.h"
#include "models/controlcenterbuttonsmodel.h"
#include "models/glacierwindowmodel.h"

#ifdef USE_GEOCLUE2
#include "geoclueagent.h"
#endif

#include "fileutils.h"
#include "glacierwindowmodel.h"
#include "logging.h"
#include "mceconnect.h"

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 2ba56eb

Please sign in to comment.