]> git.treefish.org Git - seamulator.git/commitdiff
Fix compilation
authorAlexander Schmidt <alex@treefish.org>
Sat, 7 Jan 2023 22:28:30 +0000 (23:28 +0100)
committerAlexander Schmidt <alex@treefish.org>
Sat, 7 Jan 2023 22:28:30 +0000 (23:28 +0100)
include/posdot.h
src/CMakeLists.txt

index 611c387965e29463c83a7b9d733236c05497aa16..9d089c75a926e1b6c20e027cd41f707cd3da3eed 100644 (file)
@@ -1,5 +1,8 @@
 #pragma once
 
+#include <array>
+#include <memory>
+
 #include "dot.h"
 
 struct PosDot {
index 41c3754e5f815f8ea0671a66f0b4f89ee626de14..fb8b077378c2f68d9cbfe0d2b37d961dc1c585fd 100644 (file)
@@ -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)