|
Revision 401, 0.6 kB
(checked in by krobillard, 18 months ago)
|
|
Orca Qt - A label can now be initialized from a word.
|
| Line | |
|---|
| 1 | REBOL [] |
|---|
| 2 | |
|---|
| 3 | exe %qorca [ |
|---|
| 4 | warn |
|---|
| 5 | debug |
|---|
| 6 | ;release |
|---|
| 7 | objdir %obj |
|---|
| 8 | |
|---|
| 9 | qt [gui] |
|---|
| 10 | include_from %. |
|---|
| 11 | include_from %.. |
|---|
| 12 | include_from %../util |
|---|
| 13 | libs_from %.. %orca0 |
|---|
| 14 | |
|---|
| 15 | macx [ |
|---|
| 16 | libs %bz2 |
|---|
| 17 | ] |
|---|
| 18 | linux [ |
|---|
| 19 | ;libs %fam |
|---|
| 20 | libs %bz2 |
|---|
| 21 | ;libs_from %/usr/X11R6/lib |
|---|
| 22 | ; {SM Xinerama Xext Xrandr Xrender Xcursor Xi Xft X11} |
|---|
| 23 | ;libs {png freetype dl} |
|---|
| 24 | ] |
|---|
| 25 | win32 [ |
|---|
| 26 | include_from %../win32 |
|---|
| 27 | sources_from %../win32 [ %win32console.c ] |
|---|
| 28 | ] |
|---|
| 29 | |
|---|
| 30 | sources [ |
|---|
| 31 | %main.cpp |
|---|
| 32 | %qorca.cpp |
|---|
| 33 | %../util/cbparse.c |
|---|
| 34 | ] |
|---|
| 35 | |
|---|
| 36 | ;cflags {-DDIR_WATCHER} sources [ %dmon.c %DirWatcher.cpp ] |
|---|
| 37 | ] |
|---|