refactor: move deskflow/DaemonApp => apps/deskflow-daemon/DaemonApp

This commit is contained in:
sithlord48
2026-01-06 07:51:53 -05:00
committed by Nick Bolton
parent 3993449594
commit 7fdb26f2ea
5 changed files with 9 additions and 5 deletions

View File

@ -12,7 +12,12 @@ if(WIN32)
set(EXE_ICON "IDI_DESKFLOW ICON DISCARDABLE \"${CMAKE_SOURCE_DIR}/src/apps/res/deskflow.ico\"")
configure_file(${CMAKE_SOURCE_DIR}/src/apps/res/windows.rc.in ${target}.rc)
add_executable(${target} WIN32 ${target}.cpp ${CMAKE_CURRENT_BINARY_DIR}/${target}.rc)
add_executable(
${target} WIN32
${target}.cpp
DaemonApp.cpp
DaemonApp.h
${CMAKE_CURRENT_BINARY_DIR}/${target}.rc)
target_link_libraries(
${target}

View File

@ -5,7 +5,7 @@
* SPDX-License-Identifier: GPL-2.0-only WITH LicenseRef-OpenSSL-Exception
*/
#include "deskflow/DaemonApp.h"
#include "DaemonApp.h"
#include "arch/Arch.h"
#include "base/IEventQueue.h"

View File

@ -5,13 +5,14 @@
* SPDX-License-Identifier: GPL-2.0-only WITH LicenseRef-OpenSSL-Exception
*/
#include "DaemonApp.h"
#include "arch/Arch.h"
#include "base/EventQueue.h"
#include "base/Log.h"
#include "common/ExitCodes.h"
#include "common/Settings.h"
#include "common/VersionInfo.h"
#include "deskflow/DaemonApp.h"
#include "deskflow/ipc/DaemonIpcServer.h"
#if SYSAPI_WIN32

View File

@ -37,8 +37,6 @@ add_library(${lib_name} STATIC ${PLATFORM_CODE}
Clipboard.h
ClipboardChunk.cpp
ClipboardChunk.h
DaemonApp.cpp
DaemonApp.h
DeskflowException.cpp
DeskflowException.h
DisplayInvalidException.h