From 887572208244e8ecd9feb03d714a1fcea10f6564 Mon Sep 17 00:00:00 2001 From: Michael Tryby Date: Fri, 16 Feb 2018 15:13:07 -0500 Subject: [PATCH] Changing cmake to no longer glob output library files. --- CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 214f94a..be07e6b 100755 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -63,7 +63,8 @@ include_directories(include src tools/epanet-output/src) file(GLOB EPANET_SOURCES src/*.c) set(EPANET_API_HEADER include/epanet2.h) set(EPANET_CLI_SOURCES run/main.c) -file(GLOB EPANET_OUT_SOURCES tools/epanet-output/src/*.c) +set(EPANET_OUT_SOURCES tools/epanet-output/src/epanet_output.c + tools/epanet-output/src/errormanager.c) set(EPANET_OUT_HEADER tools/epanet-output/src/epanet_output.h) file(GLOB EPANET_LIB_ALL src/*.c)