https://github.com/Kitware/CMake
Raw File
Tip revision: c36622a45f55b296d0891d94a91372c320768be0 authored by David Cole on 31 October 2012, 14:59:55 UTC
CMake 2.8.10
Tip revision: c36622a
NoDepF.c
/* depends on NoDepE */
void NoDepE_func();

void NoDepF_func()
{
  static int firstcall = 1;
  if( firstcall ) {
    firstcall = 0;
    NoDepE_func();
  }
}
back to top