https://github.com/Kitware/CMake
Raw File
Tip revision: f65cebf51a2cf3af2017fd9b03c685c77da00c74 authored by Brad King on 27 October 2021, 13:51:39 UTC
CMake 3.21.4
Tip revision: f65cebf
NoDepF.c
/* depends on NoDepE */
void NoDepE_func();

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