summaryrefslogtreecommitdiff
path: root/fluid
diff options
context:
space:
mode:
authorMatthias Melcher <fltk@matthiasm.com>2010-05-07 20:23:07 +0000
committerMatthias Melcher <fltk@matthiasm.com>2010-05-07 20:23:07 +0000
commit3ef47f712a82fb995d0811e003ad5ce5239baab7 (patch)
treef185fb0408b7c12c0b91bc2c6cd2d964aa4d2b98 /fluid
parente61436c5961f7b077c25a091765aa6fc445945d4 (diff)
Added 'rotated_text' to the Fluid IDE setup. It should probably be in 'Demo' as well.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@7595 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'fluid')
-rw-r--r--fluid/Makefile2
-rw-r--r--fluid/ide_maketools.cxx2
-rw-r--r--fluid/ide_support.cxx6
3 files changed, 8 insertions, 2 deletions
diff --git a/fluid/Makefile b/fluid/Makefile
index 18178f093..7a50ec49b 100644
--- a/fluid/Makefile
+++ b/fluid/Makefile
@@ -3,7 +3,7 @@
#
# FLUID makefile for the Fast Light Tool Kit (FLTK).
#
-# Copyright 1998-2009 by Bill Spitzak and others.
+# Copyright 1998-2010 by Bill Spitzak and others.
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Library General Public
diff --git a/fluid/ide_maketools.cxx b/fluid/ide_maketools.cxx
index 1fbb5e86d..48e179a1f 100644
--- a/fluid/ide_maketools.cxx
+++ b/fluid/ide_maketools.cxx
@@ -1655,7 +1655,7 @@ public:
" --dbmake <dbname> <targetpath> : create all IDE files for a Makefile/autoconf based project\n"
" WARNING: --dbmake is not yet implemented completely."; }
int arg(int argc, char **argv, int &i) {
- if (argc>=i+1 && strcmp(argv[i], "--dbxcode3")==0) {
+ if (argc>=i+1 && strcmp(argv[i], "--dbmake")==0) {
if (argc>=i+3 && argv[i+1][0]!='-' && argv[i+2][0]!='-') {
fprintf(stderr, "Creating Makefiles from %s in %s\n", argv[i+1], argv[i+2]);
exit_early = 1;
diff --git a/fluid/ide_support.cxx b/fluid/ide_support.cxx
index f6b4ae2ec..5c7326345 100644
--- a/fluid/ide_support.cxx
+++ b/fluid/ide_support.cxx
@@ -1241,6 +1241,12 @@ int create_new_database(const char *filename)
demo_db.depends_on(db);
}
+ { Fl_Target_Prefs db(tests_db.add_with_key("name", "rotated_text"));
+ db.add_source(files_db, "test/rotated_text.cxx");
+ db.add_lib(fltk_lib);
+ demo_db.depends_on(db);
+ }
+
{ Fl_Target_Prefs db(tests_db.add_with_key("name", "scroll"));
db.add_source(files_db, "test/scroll.cxx");
db.add_lib(fltk_lib);