diff options
author | crupest <crupest@outlook.com> | 2024-02-12 15:47:31 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2024-02-12 15:47:31 +0800 |
commit | 96ed44c31b92f1492be68c084e8b18972d549743 (patch) | |
tree | 62c56538c150ef29ddf31de417b640d210f001fe /src/common/CMakeLists.txt | |
parent | f3af6c7e5b46f4209a4981e5d7be217368f40b15 (diff) | |
download | cru-96ed44c31b92f1492be68c084e8b18972d549743.tar.gz cru-96ed44c31b92f1492be68c084e8b18972d549743.tar.bz2 cru-96ed44c31b92f1492be68c084e8b18972d549743.zip |
WORKING: add unix pipe.
Diffstat (limited to 'src/common/CMakeLists.txt')
-rw-r--r-- | src/common/CMakeLists.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt index 2414831b..aaff70fe 100644 --- a/src/common/CMakeLists.txt +++ b/src/common/CMakeLists.txt @@ -22,8 +22,9 @@ target_compile_definitions(CruBase PUBLIC $<$<CONFIG:Debug>:CRU_DEBUG>) if (UNIX AND NOT EMSCRIPTEN) target_sources(CruBase PRIVATE + platform/unix/PosixSpawnSubProcess.cpp platform/unix/UnixFileStream.cpp - platform/unix/UnixFileStream.cpp + platform/unix/UnixPipe.cpp ) if (NOT APPLE) |