xmake.lua 390 B

1234567891011
  1. add_rules("mode.debug", "mode.release")
  2. target("cxx_interop")
  3. set_kind("binary")
  4. set_languages("cxx20")
  5. add_files("lib/**.swift", {public = true})
  6. add_files("src/**.cpp")
  7. set_values("swift.modulename", "SwiftFibonacci")
  8. set_values("swift.interop", "cxx")
  9. set_values("swift.interop.headername", "fibonacci-Swift.h")
  10. set_values("swift.interop.cxxmain", true)