You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
enable_language(C)
|
|
enable_language(OBJC)
|
|
|
|
include(CheckOBJCCompilerFlag)
|
|
check_objc_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.m)
|