| 1 | #include <string.h> |
| 2 | |
| 3 | int TestTargetCompileFlags(char* m) |
| 4 | { |
| 5 | #ifndef COMPLEX_TARGET_FLAG |
| 6 | strcpy(m, "CMAKE SET_TARGET_PROPERTIES COMPILE_FLAGS did not work"); |
| 7 | return 0; |
| 8 | #endif |
| 9 | strcpy(m, "CMAKE SET_TARGET_PROPERTIES COMPILE_FLAGS worked"); |
| 10 | return 1; |
| 11 | } |
| 12 | |
| 13 | int TestCFlags(char* m) |
| 14 | { |
no outgoing calls
no test coverage detected
searching dependent graphs…