Skip to content
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