From 3185fa3e31555b1b80edb81dc4e76a1d9856f6fb Mon Sep 17 00:00:00 2001 From: Alexander Schmidt Date: Sat, 7 Jan 2023 23:28:30 +0100 Subject: [PATCH] Fix compilation --- include/posdot.h | 3 +++ src/CMakeLists.txt | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) 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) -- 2.39.2