mirror of
https://github.com/GayPizzaSpecifications/cxx-swift-interop.git
synced 2025-08-03 05:10:55 +00:00
7 lines
363 B
CMake
7 lines
363 B
CMake
add_library(CppBackend STATIC ball.hpp ball.cpp)
|
|
set_property(TARGET CppBackend PROPERTY Swift_MODULE_NAME "CppBackend")
|
|
set_property(TARGET CppBackend PROPERTY CXX_STANDARD 20)
|
|
|
|
target_include_directories(CppBackend PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}")
|
|
target_compile_options(CppBackend PUBLIC "$<$<COMPILE_LANGUAGE:Swift>:-cxx-interoperability-mode=default>")
|