chore: rename project to dde-application-manager

rename project to dde-application-manager

log:
This commit is contained in:
tsic404
2023-02-23 15:35:37 +08:00
committed by Tsic
parent d36a325b06
commit 80cf2501fa
10 changed files with 27 additions and 23 deletions

View File

@ -1,3 +1,5 @@
set(BIN_NAME dde-application-loader)
pkg_check_modules(LIBCAP REQUIRED IMPORTED_TARGET libcap)
set(SRCS
@ -29,12 +31,12 @@ set(SRCS
../modules/util/debug/debug.cpp
)
add_executable(deepin-application-loader ${SRCS})
add_executable(${BIN_NAME} ${SRCS})
target_link_libraries(deepin-application-loader
target_link_libraries(${BIN_NAME}
pthread
PkgConfig::LIBCAP
stdc++fs
Qt5::Core
)
install(TARGETS deepin-application-loader DESTINATION bin)
install(TARGETS ${BIN_NAME} DESTINATION ${CMAKE_INSTALL_BINDIR})

View File

@ -238,7 +238,7 @@ int main(int argc, char* argv[])
}
char socketPath[50];
sprintf(socketPath, "/run/user/%d/deepin-application-manager.socket", getuid());
sprintf(socketPath, "/run/user/%d/dde-application-manager.socket", getuid());
// register client and run quitConnect
Socket::Client client;