Header-only Eigen 3.4.0 C++ linear algebra library, downloaded from GitLab release. Exposes INCLUDE_DIR for scons integration. Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
10 lines
236 B
Python
10 lines
236 B
Python
import os
|
|
|
|
DIR = os.path.join(os.path.dirname(__file__), "install")
|
|
INCLUDE_DIR = DIR
|
|
LIB_DIR = DIR # header-only; no libraries
|
|
|
|
|
|
def smoketest():
|
|
assert os.path.isdir(os.path.join(DIR, "eigen3", "Eigen")), "Eigen headers not found"
|