Correct install path w/out KDE installed.

teprrr on IRC noticed that the DATA_INSTALL_PATH was set wrong in
CMakeLists.txt, when KDE4 was not found.
wilder
Michael Pyne 15 years ago
parent 6556f7d768
commit 79bbe2d26c
  1. 2
      CMakeLists.txt

@ -8,7 +8,7 @@ if (KDE4_FOUND)
include(MacroLibrary)
macro_optional_add_subdirectory(doc)
else()
set(DATA_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}/apps" CACHE PATH "The parent directory where applications can install their data")
set(DATA_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}/share/apps" CACHE PATH "The parent directory where applications can install their data")
set(BIN_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}/bin" CACHE PATH "The install dir for executables")
endif()

Loading…
Cancel
Save