
|
[openbeos]
||
[Date Prev]
[04-2008 Date Index]
[Date Next]
||
[Thread Prev]
[04-2008 Thread Index]
[Thread Next]
[openbeos] Re: Developer Edition Vmware Image
- From: "François Revol" <revol@xxxxxxx>
- To: openbeos@xxxxxxxxxxxxx
- Date: Mon, 07 Apr 2008 19:59:45 +0200 CEST
> Thanks for these comments. Perhaps I'll contact Access and see what
> they
> say. It's probably pretty difficult to program without BeIDE.
Pe is a quite good clone of the editor (minus the scancode-based
shortcut handling).
It doesn't have project managment though, but once again one should use
makefiles (or jamfiles later).
Not being a gui thing doesn't mean it's hard, it's actually way simpler
than digging BeIDE project settings!
Just copy /boot/develop/etc/makefile and edit it.
There are loads of comments telling what to do.
Most of the time you just need to do:
NAME := MyApp
SRCS := Foo.cpp Bar.cpp
You can even use:
SRCS := $(wildcard *.c) $(wildcard *.cpp)
That will automatically pick up all C/C++ files in the folder.
RSRC := MyApp.rsrc
LIBS := be tracker (and others...)
Then just type:
make
In a terminal. (you can even run that from Pe with Alt-Enter, just set
the Working Dir on an empty file to use as Worksheet)
François.
|

|