blob: b8283523d7817914dd2003d892ef0512af22da2b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
enable_language (OBJC)
include(CheckSourceRuns)
set(OBJC 1) # test that this is tolerated
check_source_runs(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()
|