Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

link Boost_LIBRARIES #7

Merged
merged 1 commit into from
Mar 4, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
find_package(Boost REQUIRED system filesystem serialization program_options)
find_package(Boost REQUIRED system regex filesystem serialization program_options)
find_package(gecode REQUIRED)

# For adding the qt4 resources
Expand Down Expand Up @@ -139,6 +139,7 @@ rock_library(templ_moft
${MOFT_EXTRA_HPP}
DEPS
templ_core
LIBS ${Boost_LIBRARIES}
)
if(WITH_GQR)
target_link_libraries(templ_moft ${GQR_LIBRARIES})
Expand Down Expand Up @@ -246,6 +247,7 @@ rock_library(templ
utils/PathConstructor.hpp
DEPS
templ_moft
LIBS ${Boost_LIBRARIES}
)

rock_library(templ_benchmark
Expand All @@ -259,6 +261,7 @@ rock_library(templ_benchmark
benchmark/io/GoldenReader.hpp
DEPS
templ
LIBS ${Boost_LIBRARIES}
)

rock_executable(templ_bin Main.cpp
Expand Down Expand Up @@ -400,6 +403,7 @@ rock_library(templ_gui
gui/widgets/SpatioTemporalRequirement.ui
gui/widgets/TemporalConstraintQualitative.ui
gui/widgets/TemporalConstraintQuantitative.ui
LIBS ${Boost_LIBRARIES}
)

rock_executable(templ-gui gui/Main.cpp
Expand Down
Loading