Begin the implementation of a type.

This commit is contained in:
2018-03-31 15:54:59 -07:00
parent c5fa68fdf5
commit 35fc0e7fd1
3 changed files with 69 additions and 1 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)
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)
add_executable(libabacus src/main.c)
add_subdirectory(external/liblex)