mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-08-11 19:29:02 +08:00
* fix include for case-sensitive filesystem
* on GNU, clock_gettime requires linking -lrt
This commit is contained in:
parent
26ea7c9801
commit
3279e39340
@ -17,7 +17,12 @@ ei_add_test(BVH)
|
||||
ei_add_test(matrixExponential)
|
||||
ei_add_test(alignedvector3)
|
||||
ei_add_test(FFT)
|
||||
ei_add_test(nesting_profiling)
|
||||
|
||||
if(CMAKE_COMPILER_IS_GNUCXX)
|
||||
ei_add_test(nesting_profiling "" "-lrt")
|
||||
else()
|
||||
ei_add_test(nesting_profiling)
|
||||
endif()
|
||||
|
||||
find_package(FFTW)
|
||||
if(FFTW_FOUND)
|
||||
|
@ -30,7 +30,7 @@
|
||||
#include "Eigen/Array"
|
||||
#include "Eigen/Geometry"
|
||||
|
||||
#include "Bench/BenchTimer.h"
|
||||
#include "bench/BenchTimer.h"
|
||||
|
||||
using namespace Eigen;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user