Skip to content

Commit

Permalink
WIP addressing #162, #150
Browse files Browse the repository at this point in the history
  • Loading branch information
cbuahin committed Feb 15, 2024
1 parent 91de2fd commit cd5120d
Show file tree
Hide file tree
Showing 6 changed files with 620 additions and 0 deletions.
32 changes: 32 additions & 0 deletions tests/solver/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
#
# CMakeLists.txt - CMake configuration file for tests/solver
#
# Created: Feb 02, 2024
# Updated: Feb 02, 2024
#
#

add_executable(test_solver
test_solver_hotstart.cpp
# test_solver_api.cpp
# test_solver_errors.cpp
# test_solver_shapes.cpp
)

target_include_directories(
test_solver
PUBLIC ../../solver/include
PUBLIC ../../outfile/include
)

target_link_libraries(
test_solver
${Boost_LIBRARIES}
swmm5
swmm-output
)

set_target_properties(
test_solver
PROPERTIES RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin
)
Loading

0 comments on commit cd5120d

Please sign in to comment.