ConfigPaths.cmake revision 18de8500674ed9182b588d1bfef2ae3bb21a0f71
MESSAGE(STATUS "Creating build files in: ${CMAKE_CURRENT_BINARY_DIR}")
IF(WIN32)
SET(PACKAGE_LOCALE_DIR "locale")
set(SHARE_INSTALL "share" CACHE STRING "Data file install path. Must be a relative path (from CMAKE_INSTALL_PREFIX), with no trailing slash.")
ELSE(WIN32)
# TODO: check and change this to correct value:
if(NOT PACKAGE_LOCALE_DIR)
SET(PACKAGE_LOCALE_DIR "${CMAKE_INSTALL_PREFIX}/share/locale") # packagers might overwrite this
endif(NOT PACKAGE_LOCALE_DIR)
if(NOT SHARE_INSTALL)
set(SHARE_INSTALL "share" CACHE STRING "Data file install path. Must be a relative path (from CMAKE_INSTALL_PREFIX), with no trailing slash.")
endif(NOT SHARE_INSTALL)
mark_as_advanced(SHARE_INSTALL)
ENDIF(WIN32)