blob: 76a5009565085fcabd6d2e1bc9c4de907567ee1a [file] [log] [blame]
enable_language (OBJC)
include(CheckSourceCompiles)
set(OBJC 1) # test that this is tolerated
check_source_compiles(OBJC [[
#import <Foundation/Foundation.h>
int main() {
NSObject *foo;
return 0;
}
]] SHOULD_BUILD)
if(NOT SHOULD_BUILD)
message(SEND_ERROR "Test fail for valid OBJC source.")
endif()