diff options
| author | Lexi Winter <lexi@le-fay.org> | 2025-06-29 19:19:23 +0100 |
|---|---|---|
| committer | Lexi Winter <lexi@le-fay.org> | 2025-06-29 19:19:23 +0100 |
| commit | a8b0ea58e60bb0326b7f7c8f3c736d89ce9ef1df (patch) | |
| tree | 6dafcf2674780649dcdc2649855722357837a68e /nihil.posix/CMakeLists.txt | |
| parent | 4fa6821e0645ff61a9380cd090abff472205c630 (diff) | |
| download | nihil-a8b0ea58e60bb0326b7f7c8f3c736d89ce9ef1df.tar.gz nihil-a8b0ea58e60bb0326b7f7c8f3c736d89ce9ef1df.tar.bz2 | |
wip macOS port
Diffstat (limited to 'nihil.posix/CMakeLists.txt')
| -rw-r--r-- | nihil.posix/CMakeLists.txt | 50 |
1 files changed, 27 insertions, 23 deletions
diff --git a/nihil.posix/CMakeLists.txt b/nihil.posix/CMakeLists.txt index 6f410ce..62f6aaf 100644 --- a/nihil.posix/CMakeLists.txt +++ b/nihil.posix/CMakeLists.txt @@ -2,36 +2,40 @@ add_library(nihil.posix STATIC) target_link_libraries(nihil.posix PRIVATE - nihil.error nihil.flagset nihil.guard nihil.monad) + nihil.core nihil.error nihil.flagset nihil.guard nihil.monad) target_sources(nihil.posix PUBLIC FILE_SET modules TYPE CXX_MODULES FILES posix.ccm - posix.argv.ccm - posix.ensure_dir.ccm - posix.exec.ccm - posix.fd.ccm - posix.getenv.ccm - posix.open.ccm - posix.process.ccm - posix.read_file.ccm - posix.rename.ccm - posix.spawn.ccm - posix.tempfile.ccm - posix.write_file.ccm + argv.ccm + ensure_dir.ccm + exec.ccm + execv.ccm + executor.ccm + fd.ccm + find_in_path.ccm + getenv.ccm + open.ccm + process.ccm + read_file.ccm + rename.ccm + spawn.ccm + tempfile.ccm + write_file.ccm PRIVATE - posix.argv.cc - posix.ensure_dir.cc - posix.exec.cc - posix.getenv.cc - posix.fd.cc - posix.find_in_path.cc - posix.open.cc - posix.process.cc - posix.rename.cc - posix.tempfile.cc + argv.cc + ensure_dir.cc + exec.cc + execv.cc + getenv.cc + fd.cc + find_in_path.cc + open.cc + process.cc + rename.cc + tempfile.cc ) if(NIHIL_TESTS) |
