2015-11-17 17:22:37 +01:00
|
|
|
cmake_minimum_required(VERSION 3.3)
|
|
|
|
project(SwiftMix C Swift)
|
|
|
|
|
|
|
|
add_executable(SwiftMix CMain.c ObjCMain.m SwiftMain.swift ObjC-Swift.h)
|
|
|
|
set_property(TARGET SwiftMix PROPERTY XCODE_ATTRIBUTE_SWIFT_OBJC_BRIDGING_HEADER "ObjC-Swift.h")
|
2019-11-11 23:01:05 +01:00
|
|
|
target_compile_options(SwiftMix PRIVATE "$<$<COMPILE_LANGUAGE:C>:-Werror=objc-method-access>")
|