diff options
author | Suren A. Chilingaryan <csa@dside.dyndns.org> | 2012-08-18 02:46:16 +0200 |
---|---|---|
committer | Suren A. Chilingaryan <csa@dside.dyndns.org> | 2012-08-18 02:46:16 +0200 |
commit | 9742a733bb8b06d26c90f2ccb330366d0ab1ae9e (patch) | |
tree | 4c1cd8c2e90b2cb17e039507c885c5fcd07e270c | |
parent | 01f2f1126eae05c9c1bd4b0560fd154e475b3bda (diff) | |
download | fastwriter-9742a733bb8b06d26c90f2ccb330366d0ab1ae9e.tar.gz fastwriter-9742a733bb8b06d26c90f2ccb330366d0ab1ae9e.tar.bz2 fastwriter-9742a733bb8b06d26c90f2ccb330366d0ab1ae9e.tar.xz fastwriter-9742a733bb8b06d26c90f2ccb330366d0ab1ae9e.zip |
Fix INCLUDE_INSTALL_DIR
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 7cc39b3..7a95a93 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -50,7 +50,7 @@ if(NOT DEFINED LIB_INSTALL_DIR) endif(NOT DEFINED LIB_INSTALL_DIR) if(NOT DEFINED INCLUDE_INSTALL_DIR) - set(INCLUDE_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}/include/${PACKAGE_TARNAME}") + set(INCLUDE_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}/include") endif(NOT DEFINED INCLUDE_INSTALL_DIR) if(NOT DEFINED LOCALE_INSTALL_DIR) |