mirror of
https://github.com/threeal/cmake-action.git
synced 2025-04-21 19:11:21 +00:00
11 lines
212 B
C++
11 lines
212 B
C++
#include <iostream>
|
|
|
|
int main() {
|
|
#if defined(CHECK_USING_CLANG) && !defined(__clang__)
|
|
std::cout << "compiler is not clang" << std::endl;
|
|
return 1;
|
|
#endif
|
|
std::cout << "all ok" << std::endl;
|
|
return 0;
|
|
}
|