Skip to content

Commit

Permalink
Fix: Compatibility with Qt5 + CPack configuration in CMakeLists
Browse files Browse the repository at this point in the history
This patch adds CPack configuration to CMakeLists so CONTROL file for
.deb packages can be deleted, it also removes the file.
  • Loading branch information
tetektoza committed Oct 19, 2023
1 parent b8e29d9 commit 6579344
Showing 1 changed file with 58 additions and 0 deletions.
58 changes: 58 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -108,3 +108,61 @@ install(TARGETS D1GraphicsTool
if(QT_VERSION_MAJOR EQUAL 6)
qt_finalize_executable(D1GraphicsTool)
endif()

if(CMAKE_SYSTEM_NAME STREQUAL "Linux")
set(CPACK ON)
endif()

# RELEASE_OPTION(CPACK "Configure CPack")
if(CPACK)
string(TOLOWER ${PROJECT_NAME} project_name)
set(CPACK_PACKAGE_NAME ${project_name})

# Common *nix files
set(CPACK_STRIP_FILES TRUE)
install(TARGETS ${BIN_TARGET} DESTINATION bin)

# set(desktop_file "${PROJEC_SOURCE_DIR}/debian/usr/share/applications/${PROJECT_NAME}")
set(desktop_file "${CMAKE_BINARY_DIR}/${PROJECT_NAME}")

# find_program(DFI desktop-file-install)
# if(DFI)
# execute_process(COMMAND ${DFI} --dir=${CMAKE_BINARY_DIR} ${desktop_file})
# set(desktop_file "${CMAKE_BINARY_DIR}/${PROJECT_NAME}")
# endif()


install(FILES "${desktop_file}"
DESTINATION "/usr/bin/"
PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE
)

install(FILES "${PROJECT_SOURCE_DIR}/debian/usr/share/applications/${PROJECT_NAME}.desktop"
DESTINATION "/usr/share/applications"
)

install(FILES "${PROJECT_SOURCE_DIR}/resources/icon.svg"
DESTINATION "/opt/d1-graphics-tool/"
RENAME "icon.svg"
)

# -G DEB
set(CPACK_PACKAGE_CONTACT "[email protected]")
if(${QT_VERSION_MAJOR} GREATER_EQUAL 6)
set(CPACK_DEBIAN_PACKAGE_DEPENDS "libqt6widgets6 (>= 6.2.4), qt6-qpa-plugins (>= 6.2.4)")
else()
set(CPACK_DEBIAN_PACKAGE_DEPENDS "libqt5widgets5 (>= 5.15.0)")
endif()
set(CPACK_DEBIAN_FILE_NAME DEB-DEFAULT)

find_program(DPKG dpkg)
if(DPKG)
list(APPEND CPACK_GENERATOR "DEB")
endif()

set(CPACK_PACKAGE_VERSION_MAJOR ${PROJECT_VERSION_MAJOR})
set(CPACK_PACKAGE_VERSION_MINOR ${PROJECT_VERSION_MINOR})
set(CPACK_PACKAGE_VERSION_PATCH ${PROJECT_VERSION_PATCH})
include(CPack)

endif()

0 comments on commit 6579344

Please sign in to comment.