star-mc

Parallel estimation of Monte Carlo integrators
git clone git://git.meso-star.fr/star-mc.git
Log | Files | Refs | README | LICENSE

commit 001c2ce68cbb20f4000bcb978aec0f6231dc6545
parent f56fc0b3211cc1d761f34fdf6d6c1347ecc281cb
Author: Vincent Forest <vincent.forest@meso-star.com>
Date:   Fri, 15 May 2015 17:29:51 +0200

Install the License and the README files

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

diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt @@ -73,11 +73,13 @@ set(SMC_FILES_INC smc_device_c.h smc_type_real.h smc_type_c.h) +set(SMC_FILES_DOC COPYING.en COPYING.fr README.md) # Prepend each file in the `SMC_FILES_<SRC|INC>' list by `SMC_SOURCE_DIR' rcmake_prepend_path(SMC_FILES_SRC ${SMC_SOURCE_DIR}) rcmake_prepend_path(SMC_FILES_INC ${SMC_SOURCE_DIR}) rcmake_prepend_path(SMC_FILES_INC_API ${SMC_SOURCE_DIR}) +rcmake_prepend_path(SMC_FILES_DOC ${PROJECT_SOURCE_DIR}/../) add_library(smc SHARED ${SMC_FILES_SRC} ${SMC_FILES_INC} ${SMC_FILES_INC_API}) set_target_properties(smc PROPERTIES @@ -144,4 +146,5 @@ install(TARGETS smc LIBRARY DESTINATION lib RUNTIME DESTINATION bin) install(FILES ${SMC_FILES_INC_API} DESTINATION include/star) +install(FILES ${SMC_FILES_DOC} DESTINATION doc/star-mc)