| 11 | } |
| 12 | |
| 13 | int TestCFlags(char* m) |
| 14 | { |
| 15 | /* TEST_CXX_FLAGS should not be defined in a c file */ |
| 16 | #ifdef TEST_CXX_FLAGS |
| 17 | strcpy(m, "CMake CMAKE_CXX_FLAGS (TEST_CXX_FLAGS) found in c file."); |
| 18 | return 0; |
| 19 | #endif |
| 20 | /* TEST_C_FLAGS should be defined in a c file */ |
| 21 | #ifndef TEST_C_FLAGS |
| 22 | strcpy(m, "CMake CMAKE_C_FLAGS (TEST_C_FLAGS) not found in c file."); |
| 23 | return 0; |
| 24 | #endif |
| 25 | return 1; |
| 26 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…