# Distributed under the MIT License.
# See LICENSE.txt for details.

set(LIBRARY "Test_RootFinding")

set(LIBRARY_SOURCES
  Test_GslMultiRoot.cpp
  Test_QuadraticEquation.cpp
  Test_RootBracketing.cpp
  Test_TOMS748.cpp
  )

add_test_library(${LIBRARY} "${LIBRARY_SOURCES}")

target_link_libraries(
  ${LIBRARY}
  PRIVATE
  Boost::boost
  DataStructures
  Logging
  RootFinding
  )
