diff options
author | Přemysl Eric Janouch <p@janouch.name> | 2020-10-26 18:37:43 +0100 |
---|---|---|
committer | Přemysl Eric Janouch <p@janouch.name> | 2020-10-26 18:39:42 +0100 |
commit | 68dd99bc6343a4ba7bbfa0d3093170f798fc9a5c (patch) | |
tree | 0c5f2cdb89326fdb6997c24c038ef348714f4d62 | |
parent | a48c2cf4e5a9136bf23f4d73a5fe141ebf180e1a (diff) | |
download | desktop-tools-68dd99bc6343a4ba7bbfa0d3093170f798fc9a5c.tar.gz desktop-tools-68dd99bc6343a4ba7bbfa0d3093170f798fc9a5c.tar.xz desktop-tools-68dd99bc6343a4ba7bbfa0d3093170f798fc9a5c.zip |
CMakeLists.txt: cleanup
Many executables had completely unnecessary dependencies.
-rw-r--r-- | CMakeLists.txt | 38 |
1 files changed, 9 insertions, 29 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index f2bf9d7..1ff4b9b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -24,51 +24,31 @@ include (AddThreads) find_package (PkgConfig REQUIRED) pkg_check_modules (dependencies REQUIRED libpulse x11 xext xextproto dbus-1) pkg_check_modules (gdm gdm glib-2.0 gio-2.0) +include_directories (${dependencies_INCLUDE_DIRS}) option (WITH_GDM "Compile with GDM support" ${gdm_FOUND}) -set (project_libraries ${dependencies_LIBRARIES}) -include_directories (${dependencies_INCLUDE_DIRS}) - # Generate a configuration file configure_file (${PROJECT_SOURCE_DIR}/config.h.in ${PROJECT_BINARY_DIR}/config.h) include_directories (${PROJECT_BINARY_DIR}) # Build -add_executable (wmstatus wmstatus.c) -target_link_libraries (wmstatus ${project_libraries}) +foreach (name brightness fancontrol-ng iexec input-switch priod siprandom) + add_executable (${name} ${name}.c) +endforeach (name) + +foreach (name big-brother paswitch wmstatus) + add_executable (${name} ${name}.c) + target_link_libraries (${name} ${dependencies_LIBRARIES}) +endforeach (name) add_threads (wmstatus) -add_executable (paswitch paswitch.c) -target_link_libraries (paswitch ${project_libraries}) - -add_executable (brightness brightness.c) -target_link_libraries (brightness ${project_libraries}) - -add_executable (input-switch input-switch.c) -target_link_libraries (input-switch ${project_libraries}) - -add_executable (fancontrol-ng fancontrol-ng.c) -target_link_libraries (fancontrol-ng ${project_libraries}) - -add_executable (priod priod.c) -target_link_libraries (priod ${project_libraries}) - -add_executable (iexec iexec.c) -target_link_libraries (iexec) - if (WITH_GDM) include_directories (${gdm_INCLUDE_DIRS}) add_executable (gdm-switch-user gdm-switch-user.c) target_link_libraries (gdm-switch-user ${gdm_LIBRARIES}) endif (WITH_GDM) -add_executable (siprandom siprandom.c) -target_link_libraries (siprandom ${project_libraries}) - -add_executable (big-brother big-brother.c) -target_link_libraries (big-brother ${project_libraries}) - # The files to be installed include (GNUInstallDirs) |