From bd891ed33476e2ba6ad0c5fc4c0b59b24c8322aa Mon Sep 17 00:00:00 2001 From: tom doron Date: Fri, 19 Nov 2021 16:22:29 -0800 Subject: [PATCH] begin to integrate SwiftSystem motivation: SwiftSystem provides infra that can replace some bespoke implementations in TSC and, improving the cross-platform support. as such we are adding it as a dependency to TSC changes: add SwiftSystem to CMake setup so it can be included in CMake based builds --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index aed24a68d..20bbc2c95 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -24,6 +24,7 @@ find_package(SwiftPM QUIET) find_package(LLBuild QUIET) find_package(ArgumentParser CONFIG REQUIRED) find_package(SwiftCollections QUIET) +find_package(SwiftSystem CONFIG REQUIRED) include(SwiftSupport)