https://github.com/Kitware/CMake
Raw File
Tip revision: a49a467fd02dded8e8976008082659054484b8fe authored by Brad King on 03 March 2015, 13:38:36 UTC
CMake 3.2.0
Tip revision: a49a467
NoDepF.c
/* depends on NoDepE */
void NoDepE_func();

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