diff options
author | Baptiste DURAND <baptiste.durand@eurogiciel.fr> | 2013-05-29 15:07:30 +0200 |
---|---|---|
committer | Baptiste DURAND <baptiste.durand@eurogiciel.fr> | 2013-05-29 15:07:30 +0200 |
commit | e734996f510c8f6adecc806333dbad52e3636fee (patch) | |
tree | f83e61b71ea43505adc2289358a97517ed239aa1 | |
parent | 793245d1a9c1d29bf7551f6f6e6d2995cd6af401 (diff) | |
download | status-e734996f510c8f6adecc806333dbad52e3636fee.tar.gz status-e734996f510c8f6adecc806333dbad52e3636fee.tar.bz2 status-e734996f510c8f6adecc806333dbad52e3636fee.zip |
Fix compatibility for x64 arch
fix library path in pc file (fix LIBDIR variable value)
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 6e0eedb..20913a0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,7 +4,7 @@ PROJECT(status C) SET(PREFIX ${CMAKE_INSTALL_PREFIX}) SET(EXEC_PREFIX "\${prefix}") SET(PROJECT_NAME "${PROJECT_NAME}") -SET(LIBDIR "\${exec_prefix}/lib") +SET(LIBDIR ${LIB_INSTALL_DIR}) SET(INCLUDEDIR "\${prefix}/include/${PROJECT_NAME}") SET(VERSION_MAJOR 0) SET(VERSION "${VERSION_MAJOR}.0.1") |