You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tuxedo-touchpad-switch/CMakeLists.txt

26 lines
1.6 KiB

cmake_minimum_required(VERSION 3.6)
4 years ago
project(tuxedo-touchpad-switch)
find_package(PkgConfig REQUIRED)
4 years ago
pkg_check_modules(deps REQUIRED IMPORTED_TARGET gio-2.0 udev)
4 years ago
4 years ago
add_executable(tuxedo-touchpad-switch tuxedo-touchpad-switch.cpp)
4 years ago
target_link_libraries(tuxedo-touchpad-switch udev PkgConfig::deps)
add_executable(tuxedo-touchpad-switch-kde tuxedo-touchpad-switch-kde.cpp)
target_link_libraries(tuxedo-touchpad-switch-kde udev PkgConfig::deps)
install(TARGETS tuxedo-touchpad-switch tuxedo-touchpad-switch-kde DESTINATION bin/)
install(FILES res/99-tuxedo-touchpad-switch.rules DESTINATION lib/udev/rules.d/)
install(FILES res/tuxedo-touchpad-switch-lockfile DESTINATION /etc/ PERMISSIONS OWNER_READ GROUP_READ WORLD_READ) # absolute path on purpose: implemented as such in tuxedo-touchpad-switch.cpp
install(FILES res/tuxedo-touchpad-switch-gdm.desktop DESTINATION /usr/share/gdm/greeter/autostart/) # absolute path on purpose: gdm has no config dir in /usr/local/
install(FILES res/tuxedo-touchpad-switch.desktop res/tuxedo-touchpad-switch-kde.desktop DESTINATION /etc/xdg/autostart/) # absolute path on purpose: $XDG_CONFIG_DIRS does not include a folder under /usr/ by default https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html#variables
SET(CPACK_GENERATOR DEB RPM)
SET(CPACK_PACKAGE_CONTACT "Werner Sembach <tux@tuxedocomputers.com>")
SET(CPACK_PACKAGE_VERSION 0.0.1)
SET(CPACK_PACKAGE_DESCRIPTION_SUMMARY "Hardware toggle for Tongfang/Uniwill i2c touchpads. This will toggle the touchpad-disabled-led.")
SET(CPACK_DEBIAN_PACKAGE_SECTION admin)
include(CPack)