diff options
| -rw-r--r-- | .travis.yml | 1 | ||||
| -rw-r--r-- | CMakeLists.txt | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index c958667..bd0a5e3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -28,6 +28,7 @@ before_install: script: - make -j2 + - mkdir cmake && cd cmake && cmake .. && make -j2 && cd .. - make test deploy: diff --git a/CMakeLists.txt b/CMakeLists.txt index 49cf3d0..c59dc79 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -13,7 +13,7 @@ find_library(sha1 sha1/libsha1.a) file(GLOB SRC "src/math/*.c" "src/cm/*.c" "src/invalid/*.c" "src/io/*.c" "src/exhaustive/*.c" "src/util/*.c") set(ECGEN_SRC "src/ecgen.c" ${SRC}) -set(ECONVERT_SRC "src/econvert.c" ${SRC}) +set(ECONVERT_SRC "src/econvert.c") add_executable(ecgen ${ECGEN_SRC}) add_executable(econvert ${ECONVERT_SRC}) |
