Revision edf200a50b7f5857a6230239917024bca6748060 authored by Brad King on 13 March 2013, 17:34:06 UTC, committed by CMake Topic Stage on 13 March 2013, 17:34:06 UTC
1823ab4 ExternalData: Preserve escaped semicolons during argument expansion

2 parent s 0707e0d + 1823ab4
Raw File
NoDepE.c
/* depends on NoDepF */
void NoDepF_func();

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