# # CMakeLists.txt - CMake configuration file for old swmm-solver releases # # Created: June 4, 2020 # Updated: June 30, 2021 # # Author: Michael E. Tryby # US EPA ORD/CESER # # Build Information: # SWMM Compiler # v5.1.14 Visual Studio 15 2017 # ... # v5.1.12 Visual Studio 10 2010 # ... # remove_definitions(-DDLL) add_executable(runswmm ${SWMM_SOURCES} ) target_compile_definitions(runswmm PUBLIC CLE ) target_compile_options(runswmm PUBLIC "$<$:" "$<$:/GL>" "$<$:/fp:fast>" "$<$:/Zi>" ">" ) target_link_options(runswmm PUBLIC "$<$:" "$<$:/LTCG>" ">" ) target_include_directories(runswmm PUBLIC ${PROJECT_SOURCE_DIR}/src )