diff options
| author | Matthias Melcher <fltk@matthiasm.com> | 2010-02-21 21:54:42 +0000 |
|---|---|---|
| committer | Matthias Melcher <fltk@matthiasm.com> | 2010-02-21 21:54:42 +0000 |
| commit | 47ed5a1dddcb084f3fdfa871d39de0df09c30a97 (patch) | |
| tree | 44f673ee9fea337b3fd480aff2af58be2e5b0616 /ide/Xcode3/Project Templates/FLTK/main.cpp | |
| parent | f3b09c3de55d6bfcc60665eaa9a89400474bc6cb (diff) | |
A completely new set of IDE files for the entire FLTK project. This project should be pretty clean and up to the newest standards in Xcode3. The debug version builds whatever is best on the current platform. The Release version builds a Universal Binary for PPC, win32, and x64 - verified OK! I will rename the now outdated Xcode3.1 project and eventually remove it.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@7132 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'ide/Xcode3/Project Templates/FLTK/main.cpp')
| -rw-r--r-- | ide/Xcode3/Project Templates/FLTK/main.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/ide/Xcode3/Project Templates/FLTK/main.cpp b/ide/Xcode3/Project Templates/FLTK/main.cpp new file mode 100644 index 000000000..4ee84edb6 --- /dev/null +++ b/ide/Xcode3/Project Templates/FLTK/main.cpp @@ -0,0 +1,12 @@ + +#include "main.h" +#include "ui.h" + +#include <FL/FL.h> + +int main(int argc, char **argv) +{ + Fl_Window *win = make_window(); + win->show(argc, argv); + return Fl::run(); +} |
