mirror of
https://github.com/reactos/CMake.git
synced 2024-12-12 13:56:00 +00:00
f5bf9d4311
Remove the use of check_cxx_source_compiles which is now just getting in the way. Blacklist the cxx_alignof feature in the test with GNU 4.7. The test file compiles, but it is documented as available first in GNU 4.8.
11 lines
123 B
C++
11 lines
123 B
C++
|
|
#define STRINGIFY_IMPL(X) #X
|
|
#define STRINGIFY(X) STRINGIFY_IMPL(X)
|
|
|
|
#include STRINGIFY(TEST)
|
|
|
|
int main()
|
|
{
|
|
return 0;
|
|
}
|