65 lines
1.6 KiB
CMake
65 lines
1.6 KiB
CMake
#
|
|
# CMakeLists.txt - CMake configuration file for epanet/tests
|
|
#
|
|
# Created: February 13, 2018
|
|
#
|
|
# Modified by: Michael E. Tryby
|
|
# US EPA ORD/NRMRL
|
|
#
|
|
|
|
|
|
# Sets for output directory for executables and libraries.
|
|
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)
|
|
|
|
if(UNIX)
|
|
set(CMAKE_CXX_FLAGS "-std=c++11")
|
|
endif(UNIX)
|
|
|
|
|
|
set(toolkit_test_srcs
|
|
test_toolkit.cpp
|
|
test_project.cpp
|
|
test_hydraulics.cpp
|
|
test_quality.cpp
|
|
test_report.cpp
|
|
test_analysis.cpp
|
|
test_node.cpp
|
|
test_demand.cpp
|
|
test_link.cpp
|
|
# test_pump.cpp
|
|
test_pattern.cpp
|
|
test_curve.cpp
|
|
test_control.cpp
|
|
test_net_builder.cpp)
|
|
|
|
add_executable(test_toolkit ${toolkit_test_srcs})
|
|
|
|
target_link_libraries(test_toolkit ${Boost_LIBRARIES} epanet2)
|
|
|
|
add_test(NAME test_toolkit
|
|
COMMAND ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/test_toolkit
|
|
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/data)
|
|
|
|
|
|
|
|
add_executable(test_reent test_reent.cpp)
|
|
|
|
IF(MSVC)
|
|
target_link_libraries(test_reent ${Boost_LIBRARIES} epanet2)
|
|
ELSE(TRUE)
|
|
target_link_libraries(test_reent ${Boost_LIBRARIES} pthread epanet2)
|
|
ENDIF(MSVC)
|
|
|
|
add_test(NAME test_reent
|
|
COMMAND ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/test_reent
|
|
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/data)
|
|
|
|
|
|
# ctest doesn't like tests added in subdirectories so adding them here
|
|
add_test(NAME test_errormanager
|
|
COMMAND ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/test_errormanager)
|
|
|
|
add_test(NAME test_output
|
|
COMMAND ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/test_output
|
|
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/outfile/data)
|