simplify cmake file

This commit is contained in:
Sam Hatchett
2015-12-07 17:18:30 -05:00
parent 99a215b88a
commit 4ccab6a27e

View File

@@ -10,7 +10,8 @@ project (EPANET)
# the library # the library
include_directories(../../include) include_directories(../../include)
add_library(epanet STATIC ../../src/epanet.c ../../src/hydraul.c ../../src/hash.c ../../src/inpfile.c ../../src/input1.c ../../src/input2.c ../../src/input3.c ../../src/mempool.c ../../src/output.c ../../src/quality.c ../../src/report.c ../../src/rules.c ../../src/smatrix.c) file(GLOB EPANET_SOURCES ../../src/*.c)
add_library(epanet STATIC ${EPANET_SOURCES})
# the standalone executable # the standalone executable
include_directories(../../src) include_directories(../../src)