Revision be36bfd65d53962c7ba975382bd911e0857f6a33 authored by Domen Vrankar on 10 February 2015, 22:03:06 UTC, committed by Brad King on 11 February 2015, 14:56:27 UTC
The file(GLOB_RECURSE) call added by commit 3ec02547 (CPackRPM: Allow
multiple path relocation prefixes for one package, 2015-01-21) should
not follow directory symlinks, so make sure CMP0009 is set to NEW.
1 parent 3d99355
Raw File
simpleCLib.c
#include <stdio.h>

int FooBar()
{
  int class;
  int private = 10;
  for ( class = 0; class < private; class ++ )
    {
    printf("Count: %d/%d\n", class, private);
    }
  return 0;
}
back to top