File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed
Runtimes/Supplemental/Synchronization Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -138,9 +138,18 @@ if(${PROJECT_NAME}_SINGLE_THREADED_MODE)
138138else ()
139139 target_sources (swiftSynchronization PRIVATE
140140 Mutex/Mutex.swift
141+ # Apple Sources
141142 $<$<PLATFORM_ID:Darwin>:Mutex/DarwinImpl.swift>
143+ # Android and Linux Sources
142144 $<$<PLATFORM_ID:Android,Linux>:Mutex/LinuxImpl.swift>
143- $<$<PLATFORM_ID:Android,WASI>:Mutex/SpinLoopHint.swift>
145+ $<$<PLATFORM_ID:Android,Linux>:Mutex/SpinLoopHint.swift>
146+ # FreeBSD Sources
147+ $<$<PLATFORM_ID:FreeBSD>:Mutex/FreeBSDImpl.swift>
148+ # OpenBSD Sources
149+ $<$<PLATFORM_ID:OpenBSD>:Mutex/OpenBSDImpl.swift>
150+ # Wasm Sources
151+ $<$<PLATFORM_ID:WASI>:Mutex/WasmImpl.swift>
152+ # Windows Sources
144153 $<$<PLATFORM_ID:Windows>:Mutex/WindowsImpl.swift>)
145154endif ()
146155
You can’t perform that action at this time.
0 commit comments