Changing cmake to no longer glob output library files.

This commit is contained in:
Michael Tryby
2018-02-16 15:13:07 -05:00
parent 89f17d61c3
commit 8875722082

View File

@@ -63,7 +63,8 @@ include_directories(include src tools/epanet-output/src)
file(GLOB EPANET_SOURCES src/*.c) file(GLOB EPANET_SOURCES src/*.c)
set(EPANET_API_HEADER include/epanet2.h) set(EPANET_API_HEADER include/epanet2.h)
set(EPANET_CLI_SOURCES run/main.c) 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) set(EPANET_OUT_HEADER tools/epanet-output/src/epanet_output.h)
file(GLOB EPANET_LIB_ALL src/*.c) file(GLOB EPANET_LIB_ALL src/*.c)