aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJ08nY2018-02-27 20:23:32 +0100
committerJ08nY2018-02-27 20:23:32 +0100
commit9abe42674361c08cc73e3fdd3891f72acaddc859 (patch)
tree5bb5805570e1071bdc7027d7d405e844bae65598
parent054de4be5dd329fb4b7c694bc8a8274f748fd8c7 (diff)
downloadecgen-9abe42674361c08cc73e3fdd3891f72acaddc859.tar.gz
ecgen-9abe42674361c08cc73e3fdd3891f72acaddc859.tar.zst
ecgen-9abe42674361c08cc73e3fdd3891f72acaddc859.zip
-rw-r--r--CMakeLists.txt3
1 files changed, 0 insertions, 3 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index fbaa39c..d93f5ba 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -5,7 +5,6 @@ add_subdirectory(lib)
file(GLOB SRC "src/math/*.c" "src/gen/*.c" "src/cm/*.c" "src/invalid/*.c" "src/io/*.c" "src/exhaustive/*.c" "src/misc/*.c" "src/util/*.c")
set(ECGEN_SRC "src/ecgen.c" ${SRC})
-set(ECONVERT_SRC "src/econvert.c")
set(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -DDEBUG -g -Wall -Werror")
set(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} -DNDEBUG -O3 -Wall")
@@ -16,9 +15,7 @@ include_directories(lib)
add_subdirectory(test)
add_executable(ecgen ${ECGEN_SRC})
-add_executable(econvert ${ECONVERT_SRC})
target_link_libraries(ecgen pthread rt pari parson sha1)
-target_link_libraries(econvert pthread rt pari parson sha1)