summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfadhil riyanto <me@fadev.org>2024-08-18 10:26:51 +0700
committerfadhil riyanto <me@fadev.org>2024-08-18 10:26:51 +0700
commit69e75e6e398fc602e80f5de21d2c120e0703dd94 (patch)
tree0997a9a6dd798143750a69151bba10ef55119bed
parentb2b2ae0739ed326b1ced41340a199b14776e4193 (diff)
add libnotify
Signed-off-by: fadhil riyanto <me@fadev.org>
-rw-r--r--CMakeLists.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 5b82536..f934e75 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -4,6 +4,9 @@ project(xsetroot-daemon)
add_executable(xsetrootd init.c)
target_link_libraries(xsetrootd -lX11)
+include_directories(xsetrootd PRIVATE /usr/include/glib-2.0/ /usr/lib/glib-2.0/include/ /usr/include/gdk-pixbuf-2.0/)
+target_link_libraries(xsetrootd -lnotify)
+
add_executable(test_notify notify.c)
include_directories(test_notify PRIVATE /usr/include/glib-2.0/ /usr/lib/glib-2.0/include/ /usr/include/gdk-pixbuf-2.0/)