Commit c4975b0d authored by Kenton Varda's avatar Kenton Varda

Extend Makefile.am to include filesystem API, including on Windows.

parent 764011ce
...@@ -139,6 +139,7 @@ includekj_HEADERS = \ ...@@ -139,6 +139,7 @@ includekj_HEADERS = \
src/kj/mutex.h \ src/kj/mutex.h \
src/kj/thread.h \ src/kj/thread.h \
src/kj/threadlocal.h \ src/kj/threadlocal.h \
src/kj/filesystem.h \
src/kj/async-prelude.h \ src/kj/async-prelude.h \
src/kj/async.h \ src/kj/async.h \
src/kj/async-inl.h \ src/kj/async-inl.h \
...@@ -229,6 +230,9 @@ libkj_la_SOURCES= \ ...@@ -229,6 +230,9 @@ libkj_la_SOURCES= \
src/kj/mutex.c++ \ src/kj/mutex.c++ \
src/kj/thread.c++ \ src/kj/thread.c++ \
src/kj/time.c++ \ src/kj/time.c++ \
src/kj/filesystem.c++ \
src/kj/filesystem-disk.c++ \
src/kj/filesystem-disk-win32.c++ \
src/kj/test-helpers.c++ \ src/kj/test-helpers.c++ \
src/kj/main.c++ \ src/kj/main.c++ \
src/kj/parse/char.c++ src/kj/parse/char.c++
...@@ -472,6 +476,8 @@ capnp_test_SOURCES = \ ...@@ -472,6 +476,8 @@ capnp_test_SOURCES = \
src/kj/mutex-test.c++ \ src/kj/mutex-test.c++ \
src/kj/threadlocal-test.c++ \ src/kj/threadlocal-test.c++ \
src/kj/threadlocal-pthread-test.c++ \ src/kj/threadlocal-pthread-test.c++ \
src/kj/filesystem-test.c++ \
src/kj/filesystem-disk-test.c++ \
src/kj/test-test.c++ \ src/kj/test-test.c++ \
src/capnp/common-test.c++ \ src/capnp/common-test.c++ \
src/capnp/blob-test.c++ \ src/capnp/blob-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