Add an implementation of base types.

These will hold information about a type such as (possibly) the
interfaces it implements and the parameters it accepts.
This commit is contained in:
2018-04-10 23:37:59 -07:00
parent 0cfc1df02c
commit d146b71e56
3 changed files with 76 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 src/ref_vec.c src/ref_trie.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 src/ref_trie.c src/basetype.c)
add_executable(libabacus src/main.c)
add_subdirectory(external/liblex)