https://github.com/Kitware/CMake
Revision ea282284d5d626b1143bea8d3be70995eaa88f2e authored by Bill Hoffman on 17 September 2009, 15:53:02 UTC, committed by Bill Hoffman on 17 September 2009, 15:53:02 UTC
1 parent 8e8c9b7
Raw File
Tip revision: ea282284d5d626b1143bea8d3be70995eaa88f2e authored by Bill Hoffman on 17 September 2009, 15:53:02 UTC
Fix for bug #9466. Change the implementation of OSX arch lists. If no ARCHs are specified by the user then no flags are set. We no longer use CMAKE_OSX_ARCHITECTURES_DEFAULT.
Tip revision: ea28228
demo.cxx
#include "hello.h"

extern Hello hello;

int main()
{
  hello.Print();
  
  return 0;
}
back to top