refactor: move deskflow/DaemonApp => apps/deskflow-daemon/DaemonApp
This commit is contained in:
@ -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}
|
||||
|
||||
@ -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"
|
||||
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
Reference in New Issue
Block a user