From: Alexander Schmidt Date: Sat, 7 Jan 2023 22:28:30 +0000 (+0100) Subject: Fix compilation X-Git-Url: http://git.treefish.org/~alex/seamulator.git/commitdiff_plain/3185fa3e31555b1b80edb81dc4e76a1d9856f6fb?ds=inline;hp=7dac0949ad4bb764817ea1fe1272839b8fe47c22 Fix compilation --- diff --git a/include/posdot.h b/include/posdot.h index 611c387..9d089c7 100644 --- a/include/posdot.h +++ b/include/posdot.h @@ -1,5 +1,8 @@ #pragma once +#include +#include + #include "dot.h" struct PosDot { diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 41c3754..fb8b077 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -20,7 +20,7 @@ add_executable(seamulator seamulator.cpp sea.cpp watersurface.cpp surfacepoint.cpp seaview.cpp synthesizer.cpp dot.cpp) -target_link_libraries(seamulator ${OPENGL_LIBRARIES} ${GLUT_LIBRARY} +target_link_libraries(seamulator ${OPENGL_LIBRARIES} ${GLUT_LIBRARIES} ${FFTW_LIBRARIES} ${Boost_LIBRARIES} ${STK_LIBRARY} ${ALSA_LIBRARIES} Eigen3::Eigen)