https://github.com/Kitware/CMake
Raw File
Tip revision: 01c62f4ff0587537566d06226f7b2e6d37d65c38 authored by Brad King on 19 July 2023, 17:56:04 UTC
CMake 3.26.5
Tip revision: 01c62f4
NoDepF.c
/* depends on NoDepE */
void NoDepE_func();

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