mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-09-25 04:09:36 +03:00
15 lines
221 B
Plaintext
15 lines
221 B
Plaintext
#ifdef CHECK_INCLUDE_FILE
|
|
|
|
#include <${CHECK_INCLUDE_FILE_VAR}>
|
|
|
|
int main()
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
#else /* CHECK_INCLUDE_FILE */
|
|
|
|
# error "CHECK_INCLUDE_FILE has to specify the include file"
|
|
|
|
#endif /* CHECK_INCLUDE_FILE */
|