aboutsummaryrefslogtreecommitdiffstats
path: root/nihil.posix/CMakeLists.txt
diff options
context:
space:
mode:
authorLexi Winter <lexi@le-fay.org>2025-06-29 20:29:50 +0100
committerLexi Winter <lexi@le-fay.org>2025-06-29 20:29:50 +0100
commit3e7902f7d790a486d3d9cb978df193f07f3a6ad9 (patch)
treefd9815cf214daeec1cad826e040cf8a0cbb6be33 /nihil.posix/CMakeLists.txt
parent67b2fae1fa8b033045a44c1355d9dfd8f83e0d9b (diff)
downloadnihil-3e7902f7d790a486d3d9cb978df193f07f3a6ad9.tar.gz
nihil-3e7902f7d790a486d3d9cb978df193f07f3a6ad9.tar.bz2
finish macOS support
Diffstat (limited to 'nihil.posix/CMakeLists.txt')
-rw-r--r--nihil.posix/CMakeLists.txt8
1 files changed, 6 insertions, 2 deletions
diff --git a/nihil.posix/CMakeLists.txt b/nihil.posix/CMakeLists.txt
index 62f6aaf..b04018e 100644
--- a/nihil.posix/CMakeLists.txt
+++ b/nihil.posix/CMakeLists.txt
@@ -11,12 +11,16 @@ target_sources(nihil.posix
argv.ccm
ensure_dir.ccm
exec.ccm
+ execlp.ccm
execv.ccm
+ execvp.ccm
executor.ccm
fd.ccm
+ fexecv.ccm
find_in_path.ccm
getenv.ccm
open.ccm
+ open_in_path.ccm
process.ccm
read_file.ccm
rename.ccm
@@ -29,10 +33,12 @@ target_sources(nihil.posix
ensure_dir.cc
exec.cc
execv.cc
+ execvp.cc
getenv.cc
fd.cc
find_in_path.cc
open.cc
+ open_in_path.cc
process.cc
rename.cc
tempfile.cc
@@ -53,8 +59,6 @@ if(NIHIL_TESTS)
Catch2::Catch2WithMain
)
- find_package(Catch2 REQUIRED)
-
include(CTest)
include(Catch)
catch_discover_tests(nihil.posix.test)