diff options
| author | Andrew Kelley <superjoe30@gmail.com> | 2017-04-17 06:45:44 -0400 |
|---|---|---|
| committer | Andrew Kelley <superjoe30@gmail.com> | 2017-04-17 06:47:20 -0400 |
| commit | 05b3082121e225ec2dfc9a062c765b4b60befaef (patch) | |
| tree | 166aedf2cbfd92e847e16d27a5c847757b66e704 /CMakeLists.txt | |
| parent | e4ec2d10c67542589e10e1eaf569157284171159 (diff) | |
| download | zig-05b3082121e225ec2dfc9a062c765b4b60befaef.tar.gz zig-05b3082121e225ec2dfc9a062c765b4b60befaef.zip | |
zig build system: progress toward install and uninstall
also:
* add std.os.path.join
* add std.os.deleteFile
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index b4a5494ad7..8aea076502 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -233,6 +233,7 @@ install(FILES "${CMAKE_SOURCE_DIR}/std/os/index.zig" DESTINATION "${ZIG_STD_DEST install(FILES "${CMAKE_SOURCE_DIR}/std/os/linux.zig" DESTINATION "${ZIG_STD_DEST}/os") install(FILES "${CMAKE_SOURCE_DIR}/std/os/linux_i386.zig" DESTINATION "${ZIG_STD_DEST}/os") install(FILES "${CMAKE_SOURCE_DIR}/std/os/linux_x86_64.zig" DESTINATION "${ZIG_STD_DEST}/os") +install(FILES "${CMAKE_SOURCE_DIR}/std/os/path.zig" DESTINATION "${ZIG_STD_DEST}/os") install(FILES "${CMAKE_SOURCE_DIR}/std/os/windows.zig" DESTINATION "${ZIG_STD_DEST}/os") install(FILES "${CMAKE_SOURCE_DIR}/std/rand.zig" DESTINATION "${ZIG_STD_DEST}") install(FILES "${CMAKE_SOURCE_DIR}/std/rand_test.zig" DESTINATION "${ZIG_STD_DEST}") |
