star-sp

Random number generators and distributions
git clone git://git.meso-star.fr/star-sp.git
Log | Files | Refs | README | LICENSE

commit e8468cc4e3751edb40218fbdeaae2fac3ba1d3c9
parent 62fa2e7ebc7347ec79d3169622a31c4bfa9366b7
Author: Vincent Forest <vincent.forest@meso-star.com>
Date:   Wed, 20 May 2015 12:26:18 +0200

Update the RSys dependency to v0.2

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

diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt @@ -40,14 +40,14 @@ option(NO_TEST "Disable the test" OFF) # Check dependencies ################################################################################ find_package(RCMake 0.1 REQUIRED) -find_package(RSys 0.1.1 REQUIRED) +find_package(RSys 0.2 REQUIRED) set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${RCMAKE_SOURCE_DIR}) include(rcmake) include(rcmake_runtime) if(MSVC) # Currently, the C++11 random library on MSVC is bugged and consequently we - # use the Boost version instead + # use the Boost library instead find_package(Boost 1.58 REQUIRED) include_directories(${RSys_INCLUDE_DIR} ${Boost_INCLUDE_DIRS}) else()