Stephen Kelly fc61a7a746 Add the target_compile_definitions command.
This is a convenience API to populate the corresponding properties.
2013-01-10 09:46:58 -05:00

15 lines
233 B
C++

#ifndef MY_PRIVATE_DEFINE
#error Expected MY_PRIVATE_DEFINE
#endif
#ifndef MY_PUBLIC_DEFINE
#error Expected MY_PUBLIC_DEFINE
#endif
#ifdef MY_INTERFACE_DEFINE
#error Unexpected MY_INTERFACE_DEFINE
#endif
int main() { return 0; }