diff --git a/components/pango_geometry/CMakeLists.txt b/components/pango_geometry/CMakeLists.txt
index 5f2b341..1d22efd 100644
--- a/components/pango_geometry/CMakeLists.txt
+++ b/components/pango_geometry/CMakeLists.txt
@@ -10,7 +10,7 @@ PRIVATE
${CMAKE_CURRENT_LIST_DIR}/src/geometry_ply.cpp
)
-target_link_libraries(${COMPONENT} pango_core pango_image tinyobj Eigen3::Eigen)
+target_link_libraries(${COMPONENT} pango_core pango_image tinyobj)
target_include_directories(${COMPONENT} PUBLIC
$<BUILD_INTERFACE:${CMAKE_CURRENT_LIST_DIR}/include>
$<INSTALL_INTERFACE:include>
diff --git a/components/pango_opengl/CMakeLists.txt b/components/pango_opengl/CMakeLists.txt
index aa666cf..7947c5c 100644
--- a/components/pango_opengl/CMakeLists.txt
+++ b/components/pango_opengl/CMakeLists.txt
@@ -21,7 +21,7 @@ PRIVATE
find_package (Eigen3 REQUIRED CONFIG QUIET)
target_compile_definitions(${COMPONENT} PUBLIC HAVE_EIGEN HAVE_GLEW)
-target_link_libraries(${COMPONENT} PUBLIC pango_core pango_image Eigen3::Eigen)
+target_link_libraries(${COMPONENT} PUBLIC pango_core pango_image)
|