c and cpp mixed attempt

This commit is contained in:
2024-08-04 17:08:27 -07:00
parent 99d4d99d76
commit 93d3feca7e
8 changed files with 16 additions and 27 deletions

View File

@ -0,0 +1,7 @@
import CppBackend
public struct FuckYou {
public static func fuck() {
let _ = BallWorld()
}
}

View File

@ -0,0 +1,2 @@
add_library(SwiftBackend STATIC Backend.swift)
target_link_libraries(SwiftBackend PRIVATE CppBackend)