Commit 648b335a authored by Kenton Varda's avatar Kenton Varda

Add table, hash, and map modules to autotools and cmake builds.

parent d33114b3
...@@ -131,6 +131,9 @@ includekj_HEADERS = \ ...@@ -131,6 +131,9 @@ includekj_HEADERS = \
src/kj/vector.h \ src/kj/vector.h \
src/kj/string.h \ src/kj/string.h \
src/kj/string-tree.h \ src/kj/string-tree.h \
src/kj/hash.h \
src/kj/table.h \
src/kj/map.h \
src/kj/encoding.h \ src/kj/encoding.h \
src/kj/exception.h \ src/kj/exception.h \
src/kj/debug.h \ src/kj/debug.h \
...@@ -225,6 +228,8 @@ libkj_la_SOURCES= \ ...@@ -225,6 +228,8 @@ libkj_la_SOURCES= \
src/kj/array.c++ \ src/kj/array.c++ \
src/kj/string.c++ \ src/kj/string.c++ \
src/kj/string-tree.c++ \ src/kj/string-tree.c++ \
src/kj/hash.c++ \
src/kj/table.c++ \
src/kj/encoding.c++ \ src/kj/encoding.c++ \
src/kj/exception.c++ \ src/kj/exception.c++ \
src/kj/debug.c++ \ src/kj/debug.c++ \
...@@ -469,6 +474,8 @@ capnp_test_SOURCES = \ ...@@ -469,6 +474,8 @@ capnp_test_SOURCES = \
src/kj/array-test.c++ \ src/kj/array-test.c++ \
src/kj/string-test.c++ \ src/kj/string-test.c++ \
src/kj/string-tree-test.c++ \ src/kj/string-tree-test.c++ \
src/kj/table-test.c++ \
src/kj/map-test.c++ \
src/kj/encoding-test.c++ \ src/kj/encoding-test.c++ \
src/kj/exception-test.c++ \ src/kj/exception-test.c++ \
src/kj/debug-test.c++ \ src/kj/debug-test.c++ \
......
...@@ -10,6 +10,8 @@ set(kj_sources_lite ...@@ -10,6 +10,8 @@ set(kj_sources_lite
memory.c++ memory.c++
mutex.c++ mutex.c++
string.c++ string.c++
hash.c++
table.c++
thread.c++ thread.c++
main.c++ main.c++
arena.c++ arena.c++
...@@ -41,6 +43,9 @@ set(kj_headers ...@@ -41,6 +43,9 @@ set(kj_headers
vector.h vector.h
string.h string.h
string-tree.h string-tree.h
hash.h
table.h
map.h
encoding.h encoding.h
exception.h exception.h
debug.h debug.h
...@@ -190,6 +195,8 @@ if(BUILD_TESTING) ...@@ -190,6 +195,8 @@ if(BUILD_TESTING)
memory-test.c++ memory-test.c++
array-test.c++ array-test.c++
string-test.c++ string-test.c++
table-test.c++
map-test.c++
exception-test.c++ exception-test.c++
debug-test.c++ debug-test.c++
io-test.c++ io-test.c++
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment