summaryrefslogtreecommitdiffstats
path: root/tdm
diff options
context:
space:
mode:
authoraneejit1 <aneejit1@gmail.com>2020-06-17 22:05:06 +0000
committeraneejit1 <aneejit1@gmail.com>2020-06-19 16:11:56 +0000
commit036992eec5a209107648729f10bcdce1825abbf2 (patch)
treed26ed30eb491a7ef81e4bf3ce270fe2a9daf1bcd /tdm
parent7fba97e18aa453c76130f587740f692cd267a216 (diff)
downloadtdebase-036992eec5a209107648729f10bcdce1825abbf2.tar.gz
tdebase-036992eec5a209107648729f10bcdce1825abbf2.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>
Diffstat (limited to 'tdm')
-rw-r--r--tdm/backend/CMakeLists.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/tdm/backend/CMakeLists.txt b/tdm/backend/CMakeLists.txt
index bece8be72..8f11c4b34 100644
--- a/tdm/backend/CMakeLists.txt
+++ b/tdm/backend/CMakeLists.txt
@@ -16,10 +16,14 @@ include_directories(
${CMAKE_BINARY_DIR}
${DBUS_INCLUDE_DIRS}
${CMAKE_SOURCE_DIR}/tdm/kfrontend
+ ${XAU_INCLUDE_DIRS}
+ ${XDMCP_INCLUDE_DIRS}
)
link_directories(
${DBUS_LIBRARY_DIRS}
+ ${XAU_LIBRARY_DIRS}
+ ${XDMCP_LIBRARY_DIRS}
)
##### tdm (executable) ##########################