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

Switch to using nlopt_cxx instead of nlopt #33

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
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: 3 additions & 3 deletions examples/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ add_dependencies(tune_example
albatross
)

target_link_libraries(tune_example m gflags pthread nlopt)
target_link_libraries(tune_example m gflags pthread nlopt_cxx)

add_custom_target(
run_tune_example ALL
Expand Down Expand Up @@ -84,7 +84,7 @@ add_dependencies(temperature_example
albatross
)

target_link_libraries(temperature_example m gflags pthread nlopt)
target_link_libraries(temperature_example m gflags pthread nlopt_cxx)

add_custom_target(
run_temperature_example ALL
Expand All @@ -95,4 +95,4 @@ add_custom_target(

add_dependencies(run_temperature_example
temperature_example
)
)
2 changes: 1 addition & 1 deletion tests/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ add_dependencies(albatross_unit_tests
clang-format-all
)

target_link_libraries(albatross_unit_tests m gtest gtest_main pthread gflags nlopt)
target_link_libraries(albatross_unit_tests m gtest gtest_main pthread gflags nlopt_cxx)

add_custom_target(
run_albatross_unit_tests ALL
Expand Down