cmake-action/test/test.c

11 lines
179 B
C

#include <stdio.h>
int main() {
#if defined(CHECK_USING_CLANG) && !defined(__clang__)
printf("compiler is not clang\n");
return 1;
#endif
printf("all ok\n");
return 0;
}