X-Git-Url: http://git.treefish.org/~alex/seamulator.git/blobdiff_plain/ba8f356e863ed4a418f93c155e64eecaea0819bf..18258cd17adcc9e97a58926a9882d0e23683c59d:/src/CMakeLists.txt?ds=inline diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 75990a0..41c3754 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -9,6 +9,7 @@ find_package(STK REQUIRED) find_package(Boost 1.40 COMPONENTS program_options REQUIRED) find_package(ALSA REQUIRED) find_package(Threads REQUIRED) +find_package(Eigen3 3.3 REQUIRED NO_MODULE) include_directories(${seamulator_SOURCE_DIR}/include ${OPENGL_INCLUDE_DIRS} ${GLUT_INCLUDE_DIRS} @@ -21,7 +22,7 @@ add_executable(seamulator seamulator.cpp target_link_libraries(seamulator ${OPENGL_LIBRARIES} ${GLUT_LIBRARY} ${FFTW_LIBRARIES} ${Boost_LIBRARIES} - ${STK_LIBRARY} ${ALSA_LIBRARIES} ${}) + ${STK_LIBRARY} ${ALSA_LIBRARIES} Eigen3::Eigen) target_link_libraries(seamulator PRIVATE Threads::Threads)