star-sp

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

commit 81bf19ac038d71b0ce9464ed09d1f662cc272542
parent 72abbde1f852b0d0862d95460ae211c61f33eed3
Author: Christophe Coustet <christophe.coustet@meso-star.com>
Date:   Wed,  5 Jul 2017 14:39:15 +0200

Fix test_ssp_rng_aes build condition.

It is now built when ssp_rng_aes is built.

Diffstat:
Mcmake/CMakeLists.txt | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt @@ -155,7 +155,7 @@ if(NOT NO_TEST) register_test(test_ssp_rng_ranlux48 test_ssp_rng ranlux48) register_test(test_ssp_rng_random_device test_ssp_rng random_device) register_test(test_ssp_rng_threefry test_ssp_rng threefry) - if(MSVC) + if(BUILD_R123_AES) register_test(test_ssp_rng_aes test_ssp_rng aes) endif() new_test(test_ssp_ran_discrete)