From f9065a591ce74e07045f6b93c2d4b861f176805b Mon Sep 17 00:00:00 2001 From: Skittles Date: Sun, 14 Jun 2026 12:32:08 -0700 Subject: [PATCH] Added Eigen dependency --- CMakeLists.txt | 1 + vcpkg.json | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 99daf1e..93ad58e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,6 +34,7 @@ endif () # Packages # HERE +find_package(Eigen3 REQUIRED NO_MODULE) # FetchContent added in CMake 3.11, downloads during the configure step # FetchContent_MakeAvailable was added in CMake 3.14; simpler usage diff --git a/vcpkg.json b/vcpkg.json index 6e998b5..b28b977 100644 --- a/vcpkg.json +++ b/vcpkg.json @@ -1,5 +1,5 @@ { "dependencies": [ - + "eigen3" ] }