Skip to content

Commit d48ea26

Browse files
wineeedeepin-bot[bot]
authored andcommitted
feat: use configure_file set path in DdeSessionShellConfig.cmake
Log: use configure_file set path in DdeSessionShellConfig.cmake
1 parent f56b805 commit d48ea26

3 files changed

+10
-2
lines changed

CMakeLists.txt

+8
Original file line numberDiff line numberDiff line change
@@ -354,6 +354,14 @@ install(FILES ${INTERFACE} DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/dde-session-s
354354
file(GLOB CMAKE_CONFIG cmake/*.cmake)
355355
install(FILES ${CMAKE_CONFIG} DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/DdeSessionShell)
356356

357+
configure_file(
358+
${CMAKE_SOURCE_DIR}/cmake/DdeSessionShellConfig.cmake.in
359+
${CMAKE_CURRENT_BINARY_DIR}/DdeSessionShellConfig.cmake
360+
@ONLY)
361+
362+
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/DdeSessionShellConfig.cmake
363+
DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/DdeSessionShell)
364+
357365
# config
358366
dconfig_meta_files(APPID org.deepin.dde.lock FILES configs/org.deepin.dde.lock.json)
359367
dconfig_meta_files(APPID org.deepin.dde.lightdm-deepin-greeter FILES configs/org.deepin.dde.lightdm-deepin-greeter.json)

cmake/DdeSessionShellConfig.cmake

-2
This file was deleted.

cmake/DdeSessionShellConfig.cmake.in

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
set(DDESESSIONSHELL_INCLUDE_DIR @CMAKE_INSTALL_FULL_INCLUDEDIR@/dde-session-shell)
2+
include_directories(${DDESESSIONSHELL_INCLUDE_DIR})

0 commit comments

Comments
 (0)