Files
wasmtime/wasmtime-wasi/sandboxed-system-primitives/CMakeLists.txt
Dan Gohman b2fefe7714 WASI prototype design, implementation, and documentation.
This adds documents describing the WASI Core API, and an implementation in
Wasmtime.
2019-03-27 10:58:43 -07:00

9 lines
243 B
CMake

cmake_minimum_required(VERSION 3.0)
project(SandboxedSystemPrimitives C)
include_directories(include)
add_library(SandboxedSystemPrimitives STATIC src/posix.c src/random.c src/str.c)
install(TARGETS SandboxedSystemPrimitives DESTINATION .)