https://github.com/Kitware/CMake
Raw File
Tip revision: c479a06d80bd4b4eecb0923fc7cafcd5a82b3dbc authored by Brad King on 05 June 2013, 13:47:09 UTC
CMake 2.8.11.1
Tip revision: c479a06
Exec.c
void OneFunc();
void TwoFunc();

int main()
{
  OneFunc();
  TwoFunc();
  return 0;
}
back to top