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.
|
cmake_minimum_required(VERSION 3.16)
|
|
project(CheckOBJCCompilerFlag OBJC)
|
|
include(CheckOBJCCompilerFlag)
|
|
check_objc_compiler_flag(-DFOO HAS_COMPILER_FLAG)
|
|
if(NOT HAS_COMPILER_FLAG)
|
|
message(SEND_ERROR "Test fail: HAS_COMPILER_FLAG: ${COMPILER_FLAG}")
|
|
endif()
|