blob: 2f53cfc4f6be1f74ac07db9923f0fcf06b8a5efc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
enable_language (OBJC)
include(CheckSourceCompiles)
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()
|