*重写Apps服务,新服务分为org.deepin.daemon.DFWatcher1和org.deepin.daemon.ALRecorder1两个服务 *重写Launcher服务, 新服务名为org.deepin.dde.daemon.Launcher1 *重写Dock服务, 新服务名为org.deepin.dde.daemon.Dock1 *重写部分go-lib接口,保存在src/lib目录, 后续从项目中提出统一存放至开发库 *使用XCB库实现与XServer交互,存放在src/lib目录 *放弃依赖dde-qt-dbus-factory包, 将xml文件生成的静态编译代码存放在frameworkdbus目录 Log: 实现Apps服务、Launcher服务、Dock服务 Task: https://pms.uniontech.com/task-view-109315.html Influence: 无 Change-Id: Ia9676060bfe81ce8d02c48972cc3d3cbaf665a31
40 lines
1.1 KiB
CMake
40 lines
1.1 KiB
CMake
pkg_check_modules(LIBCAP REQUIRED IMPORTED_TARGET libcap)
|
|
|
|
set(SRCS
|
|
./main.cpp
|
|
../modules/tools/desktop_deconstruction.hpp
|
|
../modules/socket/client.h
|
|
../modules/socket/client.cpp
|
|
../modules/methods/task.hpp
|
|
../modules/methods/basic.h
|
|
../modules/methods/instance.hpp
|
|
../modules/methods/quit.hpp
|
|
../modules/methods/registe.hpp
|
|
../modules/util/common.cpp
|
|
../modules/util/common.h
|
|
../modules/util/filesystem.cpp
|
|
../modules/util/filesystem.h
|
|
../modules/util/json.h
|
|
../modules/util/logger.cpp
|
|
../modules/util/logger.h
|
|
../modules/util/macro.h
|
|
../modules/util/oci_runtime.h
|
|
../modules/util/platform.cpp
|
|
../modules/util/platform.h
|
|
../modules/util/semaphore.cpp
|
|
../modules/util/semaphore.h
|
|
../modules/util/util.h
|
|
../modules/util/debug/debug.h
|
|
../modules/util/debug/debug.cpp
|
|
)
|
|
|
|
add_executable(deepin-application-loader ${SRCS})
|
|
|
|
target_link_libraries(deepin-application-loader
|
|
pthread
|
|
PkgConfig::LIBCAP
|
|
stdc++fs
|
|
Qt5::Core
|
|
)
|
|
install(TARGETS deepin-application-loader DESTINATION bin)
|