Skip to content

Commit e47e224

Browse files
committed
Server: major refactor
1 parent a5cd44a commit e47e224

File tree

19 files changed

+587
-1001
lines changed

19 files changed

+587
-1001
lines changed

server/CMakeLists.txt

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,9 @@ find_package(QT NAMES Qt6 Qt5 COMPONENTS Core Widgets WebSockets REQUIRED)
2929
find_package(Qt${QT_VERSION_MAJOR} COMPONENTS Core Widgets WebSockets REQUIRED)
3030

3131
set(PROJECT_SOURCES
32-
source/Client/ClientWorker.cpp
3332
source/ClientDialog/ClientDialog.cpp
34-
source/ClientHandler/ClientHandler.cpp
3533
source/Client/Client.cpp
3634
source/DLIBWorker/DLIBWorker.cpp
37-
source/UIInterface/UIInterface.cpp
3835
source/Server/Server.cpp
3936
source/SocketHandler/SocketHandler.cpp
4037
source/main.cpp
@@ -88,10 +85,8 @@ endif()
8885
target_include_directories(iot-facerecognition-server
8986
PRIVATE
9087
source/ClientDialog
91-
source/ClientHandler
9288
source/Client
9389
source/DLIBWorker
94-
source/UIInterface
9590
source/MainWindow
9691
source/Server
9792
source/SocketHandler
@@ -102,4 +97,4 @@ target_compile_definitions(iot-facerecognition-server
10297
PRIVATE $<$<OR:$<CONFIG:Debug>,$<CONFIG:RelWithDebInfo>>:QT_QML_DEBUG> VER=${APP_VERSION})
10398
target_link_libraries(iot-facerecognition-server
10499
PRIVATE Qt${QT_VERSION_MAJOR}::Core Qt${QT_VERSION_MAJOR}::Widgets Qt${QT_VERSION_MAJOR}::WebSockets dlib::dlib)
105-
100+

0 commit comments

Comments
 (0)