summaryrefslogtreecommitdiffstats
path: root/twin
diff options
context:
space:
mode:
authoraneejit1 <aneejit1@gmail.com>2020-06-17 22:05:06 +0000
committerSlávek Banko <slavek.banko@axis.cz>2020-06-21 19:59:43 +0200
commitcec16021dca6002f3885c7e90d54b9eda0321f9e (patch)
treeb1f3e6850500f258c9350c9d6daa244b6fe9fd54 /twin
parent4bbaa90f2a120e420322b45a67c3fbd0b28f9091 (diff)
downloadtdebase-cec16021dca6002f3885c7e90d54b9eda0321f9e.tar.gz
tdebase-cec16021dca6002f3885c7e90d54b9eda0321f9e.zip
Add missing include/link directories
In an environment where not everything is in /usr... - drkonqi/CMakeLists.txt requires the libr library path to be specified. - nsplugins/viewer/CMakeLists.txt requires the glib library path to be specified. - tdm/backend/CMakeLists.txt was missing the include and link directories for libXau and libXDMCP. - twin/compton-tde/CMakeLists.txt was missing include and link directories for the optionally selected libraries (libconfig, Xinerama, XRandR, OpenGL and PCRE). Signed-off-by: aneejit1 <aneejit1@gmail.com> (cherry picked from commit 036992eec5a209107648729f10bcdce1825abbf2)
Diffstat (limited to 'twin')
-rw-r--r--twin/compton-tde/CMakeLists.txt14
1 files changed, 14 insertions, 0 deletions
diff --git a/twin/compton-tde/CMakeLists.txt b/twin/compton-tde/CMakeLists.txt
index ebaf38f33..d432b533f 100644
--- a/twin/compton-tde/CMakeLists.txt
+++ b/twin/compton-tde/CMakeLists.txt
@@ -20,6 +20,20 @@ include_directories(
${CMAKE_BINARY_DIR}
${CMAKE_CURRENT_BINARY_DIR}
${DBUS_INCLUDE_DIRS}
+ ${LIBCONFIG_INCLUDE_DIRS}
+ ${XINERAMA_INCLUDE_DIRS}
+ ${XRANDR_INCLUDE_DIRS}
+ ${GL_INCLUDE_DIRS}
+ ${LIBPCRE_INCLUDE_DIRS}
+)
+
+link_directories(
+ ${DBUS_LIBRARY_DIRS}
+ ${LIBCONFIG_LIBRARY_DIRS}
+ ${XINERAMA_LIBRARY_DIRS}
+ ${XRANDR_LIBRARY_DIRS}
+ ${GL_LIBRARY_DIRS}
+ ${LIBPCRE_LIBRARY_DIRS}
)