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

17 lines
537 B

cmake_minimum_required(VERSION 3.6)
4 years ago
project(tuxedo-touchpad-switch)
find_package(PkgConfig REQUIRED)
4 years ago
add_executable(tuxedo-touchpad-switch tuxedo-touchpad-switch.cpp)
target_link_libraries(tuxedo-touchpad-switch udev)
pkg_check_modules(GIO2 REQUIRED IMPORTED_TARGET gio-2.0)
add_executable(gsettings-test gsettings-test.c)
target_link_libraries(gsettings-test PkgConfig::GIO2)
add_executable(tuxedo-touchpad-switch-deamon tuxedo-touchpad-switch-deamon.cpp)
target_link_libraries(tuxedo-touchpad-switch-deamon udev PkgConfig::GIO2)