blob: 00889560545a4eee79fb1aa7104da3887e588316 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
enable_language (OBJCXX)
include(CheckOBJCXXSourceCompiles)
set(OBJCXX 1) # test that this is tolerated
check_objcxx_source_compiles("I don't build in Objective-C++" SHOULD_FAIL)
if(SHOULD_FAIL)
message(SEND_ERROR "invalid OBJCXX source didn't fail.")
endif()
check_objcxx_source_compiles([[
#include <vector>
#import <Foundation/Foundation.h>
int main() {
std::vector<int> v;
NSObject *foo;
return 0;
}
]] SHOULD_BUILD)
if(NOT SHOULD_BUILD)
message(SEND_ERROR "Test fail for OBJCXX source.")
endif()
|