From c57499d29c06b0e8c1e682ad77f13bd421245808 Mon Sep 17 00:00:00 2001 From: Tomáš Čech Date: Wed, 30 Sep 2015 14:21:01 +0200 Subject: Use location of XKBcommon headers, don't expect build in source directory --- CMakeLists.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 09f37d6d..d8e4ebca 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -47,6 +47,7 @@ include_directories( ${WLC_INCLUDE_DIRS} ${PCRE_INCLUDE_DIRS} ${JSONC_INCLUDE_DIRS} + ${XKBCOMMON_INCLUDE_DIRS} include/ ) @@ -88,12 +89,12 @@ ADD_CUSTOM_TARGET(man ALL DEPENDS ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/sway.5) INSTALL( - FILES ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/sway.1 + FILES ${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/sway.1 DESTINATION ${CMAKE_INSTALL_PREFIX}/share/man/man1 ) INSTALL( - FILES ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/sway.5 + FILES ${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/sway.5 DESTINATION ${CMAKE_INSTALL_PREFIX}/share/man/man5 ) -- cgit v1.2.3-54-g00ecf