mirror of
https://github.com/threeal/cmake-action.git
synced 2025-04-20 02:31:20 +00:00
11 lines
179 B
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;
|
|
}
|