mirror of
https://github.com/NixOS/nix
synced 2025-07-03 10:21:47 +02:00
This ended up motivating a good deal of other infra improvements in order to get Windows right: - `OsString` to complement `std::filesystem::path` - env var code for working with the underlying `OsString`s - Rename `PATHNG_LITERAL` to `OS_STR` - `NativePathTrait` renamed to `OsPathTrait`, given a character template parameter until #9205 is complete. Split `tests.cc` matching split of `util.{cc,hh}` last year. Co-authored-by: Robert Hensing <roberth@users.noreply.github.com>
18 lines
302 B
Meson
18 lines
302 B
Meson
sources += files(
|
|
'environment-variables.cc',
|
|
'file-descriptor.cc',
|
|
'file-path.cc',
|
|
'file-system.cc',
|
|
'muxable-pipe.cc',
|
|
'os-string.cc',
|
|
'processes.cc',
|
|
'signals.cc',
|
|
'users.cc',
|
|
)
|
|
|
|
include_dirs += include_directories('.')
|
|
|
|
headers += files(
|
|
'monitor-fd.hh',
|
|
'signals-impl.hh',
|
|
)
|