diff --git a/Runtimes/Core/CMakeLists.txt b/Runtimes/Core/CMakeLists.txt index a6428b6b425ab..d5d24536b9828 100644 --- a/Runtimes/Core/CMakeLists.txt +++ b/Runtimes/Core/CMakeLists.txt @@ -206,7 +206,7 @@ add_subdirectory(Demangling) add_subdirectory(Threading) add_subdirectory(runtime) add_subdirectory(stubs) -add_subdirectory(core) +add_subdirectory(Core) if(SwiftCore_ENABLE_COMMANDLINE_SUPPORT) add_subdirectory(CommandLineSupport) endif() diff --git a/Runtimes/Core/core/CMakeLists.txt b/Runtimes/Core/Core/CMakeLists.txt similarity index 100% rename from Runtimes/Core/core/CMakeLists.txt rename to Runtimes/Core/Core/CMakeLists.txt diff --git a/Runtimes/Resync.cmake b/Runtimes/Resync.cmake index f1ea406d7d5a8..98338c712aac5 100644 --- a/Runtimes/Resync.cmake +++ b/Runtimes/Resync.cmake @@ -86,7 +86,6 @@ set(CoreLibs CompatibilityOverride stubs CommandLineSupport - core SwiftOnoneSupport RemoteInspection SwiftRemoteMirror @@ -97,6 +96,10 @@ foreach(library ${CoreLibs}) copy_library_sources(${library} "public" "Core") endforeach() +# copying Core/core separately, so we can specify the case of the target folder +# correctly on case sensitive file systems +copy_library_sources("" "public/core" "Core/Core") + message(STATUS "plist[${StdlibSources}/Info.plist.in] -> Core/Info.plist.in") copy_files("" "Core" FILES "Info.plist.in")