mirror of
https://github.com/GayPizzaSpecifications/cxx-swift-interop.git
synced 2025-08-03 13:11:31 +00:00
12 lines
319 B
CMake
12 lines
319 B
CMake
|
cmake_minimum_required(VERSION 3.24)
|
||
|
project(cxxswift LANGUAGES CXX Swift)
|
||
|
|
||
|
set(CMAKE_CXX_STANDARD 20)
|
||
|
|
||
|
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules")
|
||
|
include(InitializeSwift)
|
||
|
include(AddSwift)
|
||
|
|
||
|
include_directories("${CMAKE_CURRENT_SOURCE_DIR}/Sources/CppBackend")
|
||
|
add_subdirectory(Sources)
|