summaryrefslogtreecommitdiffstats
path: root/cmake/Modules/FindCompilerAttribute.cmake
blob: 6ecd6ff2220db6bd59cd51dcc27ad8da80fcfb78 (plain)
1
2
3
4
5
6
7
8
9
INCLUDE(CheckCSourceCompiles)
SET(HAVE___ATTRIBUTE__)
CHECK_C_SOURCE_COMPILES(
   "void  foo (int bar __attribute__((unused)) ) { }
   static void baz (void) __attribute__((unused));
   static void baz (void) { }
   int main(){}
   " HAVE___ATTRIBUTE__
   )