Add a vector of reference counted values.

This commit is contained in:
2018-03-31 20:44:01 -07:00
parent 35fc0e7fd1
commit e6801255fa
5 changed files with 140 additions and 5 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)
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_executable(libabacus src/main.c)
add_subdirectory(external/liblex)