rsys

Basic data structures and low-level features
git clone git://git.meso-star.fr/rsys.git
Log | Files | Refs | README | LICENSE

commit a8874cdf147bb7a2db618acf7e362c6a251ea9ff
parent cf4ce2dee3b8e30f6f3b589cf00c7a62184c301b
Author: vaplv <vaplv@free.fr>
Date:   Wed, 13 May 2015 10:27:40 +0200

Install the license and README files

Diffstat:
Mcmake/CMakeLists.txt | 5+++++
1 file changed, 5 insertions(+), 0 deletions(-)

diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt @@ -98,11 +98,14 @@ set(RSYS_FILES_INC_API str.h stretchy_array.h) +set(RSYS_FILES_DOC COPYING COPYING.LESSER README.md) + # Prepend each file in the `_files' list by `_path' rcmake_prepend_path(RSYS_FILES_SRC ${RSYS_SOURCE_DIR}) rcmake_prepend_path(RSYS_FILES_SRC_THREAD ${RSYS_SOURCE_DIR}) rcmake_prepend_path(RSYS_FILES_INC ${RSYS_SOURCE_DIR}) rcmake_prepend_path(RSYS_FILES_INC_API ${RSYS_SOURCE_DIR}) +rcmake_prepend_path(RSYS_FILES_DOC ${PROJECT_SOURCE_DIR}/../) add_library(rsys SHARED ${RSYS_FILES_SRC} @@ -190,9 +193,11 @@ endif(NOT NO_TEST) ################################################################################ # Define output & install directories ################################################################################ + install(TARGETS rsys ARCHIVE DESTINATION bin LIBRARY DESTINATION lib RUNTIME DESTINATION bin) install(FILES ${RSYS_FILES_INC_API} DESTINATION include/rsys) +install(FILES ${RSYS_FILES_DOC} DESTINATION doc/rsys)