File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -25,11 +25,11 @@ SET(LIB_SUFFIX "" CACHE STRING "Optional arch-dependent suffix for the library i
25
25
26
26
SET (RUNTIME_INSTALL_DIR bin
27
27
CACHE PATH "Install dir for executables and dlls" )
28
- SET (ARCHIVE_INSTALL_DIR lib${LIB_SUFFIX}
28
+ SET (ARCHIVE_INSTALL_DIR ${CMAKE_INSTALL_PREFIX} / lib${LIB_SUFFIX}
29
29
CACHE PATH "Install dir for static libraries" )
30
- SET (LIBRARY_INSTALL_DIR lib${LIB_SUFFIX}
30
+ SET (LIBRARY_INSTALL_DIR ${CMAKE_INSTALL_PREFIX} / lib${LIB_SUFFIX}
31
31
CACHE PATH "Install dir for shared libraries" )
32
- SET (INCLUDE_INSTALL_DIR include
32
+ SET (INCLUDE_INSTALL_DIR ${CMAKE_INSTALL_PREFIX} / include
33
33
CACHE PATH "Install dir for headers" )
34
34
SET (PACKAGE_INSTALL_DIR lib${LIB_SUFFIX} /cmake
35
35
CACHE PATH "Install dir for cmake package config files" )
Original file line number Diff line number Diff line change 1
1
prefix=@CMAKE_INSTALL_PREFIX@
2
2
exec_prefix=${prefix}
3
- libdir=${exec_prefix}/ @LIBRARY_INSTALL_DIR@
4
- includedir=${prefix}/ @INCLUDE_INSTALL_DIR@
3
+ libdir=@LIBRARY_INSTALL_DIR@
4
+ includedir=@INCLUDE_INSTALL_DIR@
5
5
6
6
Name: jsoncpp
7
7
Description: A C++ library for interacting with JSON
You can’t perform that action at this time.
0 commit comments