mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
Move the backtracing code into a new Runtime module. This means renaming the Swift Runtime's CMake target because otherwise there will be a name clash. rdar://124913332
14 lines
148 B
Plaintext
14 lines
148 B
Plaintext
module OS {
|
|
module Darwin {
|
|
header "Darwin.h"
|
|
}
|
|
|
|
module Linux {
|
|
header "Linux.h"
|
|
}
|
|
|
|
module Windows {
|
|
header "Windows.h"
|
|
}
|
|
}
|