Commit e26d9c90 authored by Kenton Varda's avatar Kenton Varda

Extend cmake build to include filesystem API, including on Windows.

parent 739703dd
...@@ -21,6 +21,9 @@ set(kj_sources_heavy ...@@ -21,6 +21,9 @@ set(kj_sources_heavy
string-tree.c++ string-tree.c++
encoding.c++ encoding.c++
time.c++ time.c++
filesystem.c++
filesystem-disk.c++
filesystem-disk-win32.c++
parse/char.c++ parse/char.c++
) )
if(NOT CAPNP_LITE) if(NOT CAPNP_LITE)
...@@ -49,6 +52,7 @@ set(kj_headers ...@@ -49,6 +52,7 @@ set(kj_headers
mutex.h mutex.h
thread.h thread.h
threadlocal.h threadlocal.h
filesystem.h
time.h time.h
main.h main.h
windows-sanity.h windows-sanity.h
...@@ -190,6 +194,8 @@ if(BUILD_TESTING) ...@@ -190,6 +194,8 @@ if(BUILD_TESTING)
one-of-test.c++ one-of-test.c++
function-test.c++ function-test.c++
threadlocal-pthread-test.c++ threadlocal-pthread-test.c++
filesystem-test.c++
filesystem-disk-test.c++
parse/common-test.c++ parse/common-test.c++
parse/char-test.c++ parse/char-test.c++
compat/url-test.c++ compat/url-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