blob: b04018e90d4809289ed9a7994d9692c7034f4ab3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
# This source code is released into the public domain.
add_library(nihil.posix STATIC)
target_link_libraries(nihil.posix PRIVATE
nihil.core nihil.error nihil.flagset nihil.guard nihil.monad)
target_sources(nihil.posix
PUBLIC FILE_SET modules TYPE CXX_MODULES FILES
posix.ccm
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
spawn.ccm
tempfile.ccm
write_file.ccm
PRIVATE
argv.cc
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
)
if(NIHIL_TESTS)
enable_testing()
add_executable(nihil.posix.test
test.fd.cc
test.getenv.cc
test.spawn.cc
test.tempfile.cc
)
target_link_libraries(nihil.posix.test PRIVATE
nihil.posix
Catch2::Catch2WithMain
)
include(CTest)
include(Catch)
catch_discover_tests(nihil.posix.test)
endif()
|