diff --git a/Runtimes/Supplemental/Synchronization/CMakeLists.txt b/Runtimes/Supplemental/Synchronization/CMakeLists.txt index c6bd55ab15a0..1e10f69af4c9 100644 --- a/Runtimes/Supplemental/Synchronization/CMakeLists.txt +++ b/Runtimes/Supplemental/Synchronization/CMakeLists.txt @@ -138,9 +138,18 @@ if(${PROJECT_NAME}_SINGLE_THREADED_MODE) else() target_sources(swiftSynchronization PRIVATE Mutex/Mutex.swift + # Apple Sources $<$:Mutex/DarwinImpl.swift> + # Android and Linux Sources $<$:Mutex/LinuxImpl.swift> - $<$:Mutex/SpinLoopHint.swift> + $<$:Mutex/SpinLoopHint.swift> + # FreeBSD Sources + $<$:Mutex/FreeBSDImpl.swift> + # OpenBSD Sources + $<$:Mutex/OpenBSDImpl.swift> + # Wasm Sources + $<$:Mutex/WasmImpl.swift> + # Windows Sources $<$:Mutex/WindowsImpl.swift>) endif()