mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-01 03:11:08 -06:00
13 lines
307 B
CMake
13 lines
307 B
CMake
cmake_minimum_required(VERSION 3.15)
|
|
project(objcxxtest LANGUAGES CXX OBJCXX)
|
|
|
|
include(CheckOBJCXXCompilerFlag)
|
|
check_objcxx_compiler_flag(-fobjc-arc HAVE_OBJC_ARC)
|
|
|
|
if(HAVE_OBJC_ARC)
|
|
add_compile_options(-fobjc-arc)
|
|
add_compile_definitions(HAVE_OBJC_ARC)
|
|
endif()
|
|
|
|
add_library(myfuncs STATIC myfuncs.mm)
|