File tree Expand file tree Collapse file tree 1 file changed +2
-12
lines changed
Expand file tree Collapse file tree 1 file changed +2
-12
lines changed Original file line number Diff line number Diff line change @@ -5,21 +5,11 @@ ELSE (PROJECT_OS_WIN)
55 SET (CMAKE_INSTALL_PREFIX "/usr/local" CACHE PATH "Installation directory" )
66ENDIF (PROJECT_OS_WIN)
77
8- MESSAGE (STATUS "${PROJECT_NAME} will be installed to ${CMAKE_INSTALL_PREFIX} " )
9-
10- # Installation prefix for include files
118STRING (TOLOWER ${PROJECT_NAME} projectNameLower)
129SET (PROJECT_INCLUDE_INSTALL_DIR "include/${projectNameLower} " )
1310SET (PROJECT_MANPAGE_INSTALL_DIR "share/man" )
11+ SET (PROJECT_LIBRARY_INSTALL_DIR "lib" )
1412
15- IF (PROJECT_PROC_64BIT)
16- SET (LIB_SUFFIX "64" CACHE STRING "Suffix for library installation directory" )
17- ELSE (PROJECT_PROC_64BIT)
18- SET (LIB_SUFFIX "" CACHE STRING "Suffix for library installation directory" )
19- ENDIF (PROJECT_PROC_64BIT)
20-
21- SET (PROJECT_LIBRARY_INSTALL_DIR "lib${LIB_SUFFIX} " )
22-
13+ MESSAGE (STATUS "${PROJECT_NAME} will be installed to ${CMAKE_INSTALL_PREFIX} " )
2314MESSAGE (STATUS "Headers will be installed to ${CMAKE_INSTALL_PREFIX} /${PROJECT_INCLUDE_INSTALL_DIR} " )
2415MESSAGE (STATUS "Libraries will be installed to ${CMAKE_INSTALL_PREFIX} /${PROJECT_LIBRARY_INSTALL_DIR} " )
25-
You can’t perform that action at this time.
0 commit comments