Remove types, while their implementation is not thought out.

This commit is contained in:
2018-04-01 00:18:53 -07:00
parent e6801255fa
commit 60d22c2511
3 changed files with 1 additions and 69 deletions

View File

@@ -8,7 +8,7 @@ project(libabacus)
add_compile_options(-pedantic -Wall)
add_library(abacus STATIC src/lexer.c src/util.c src/table.c src/parser.c src/libabacus.c src/tree.c src/debug.c src/parsetype.c src/reserved.c src/trie.c src/refcount.c src/type.c src/ref_vec.c)
add_library(abacus STATIC src/lexer.c src/util.c src/table.c src/parser.c src/libabacus.c src/tree.c src/debug.c src/parsetype.c src/reserved.c src/trie.c src/refcount.c src/ref_vec.c)
add_executable(libabacus src/main.c)
add_subdirectory(external/liblex)