| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391 |
- //
- // "$Id: ide_support.cxx 8049 2010-12-17 10:43:41Z manolo $"
- //
- // IDE and Build File generation for the Fast Light Tool Kit (FLTK).
- //
- // Copyright 2010 by Matthias Melcher.
- //
- // This library is free software; you can redistribute it and/or
- // modify it under the terms of the GNU Library General Public
- // License as published by the Free Software Foundation; either
- // version 2 of the License, or (at your option) any later version.
- //
- // This library is distributed in the hope that it will be useful,
- // but WITHOUT ANY WARRANTY; without even the implied warranty of
- // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- // Library General Public License for more details.
- //
- // You should have received a copy of the GNU Library General Public
- // License along with this library; if not, write to the Free Software
- // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
- // USA.
- //
- // Please report all bugs and problems on the following page:
- //
- // http://www.fltk.org/str.php
- //
- /*
- IDE SUPPORT IN FLUID
-
- One of the biggest issues in maintaining FLTK has been the maintenance of build
- environments. Users are confused when new features of FLTK ar not available
- yet for their platform, and may never be unless a volunteer updates and
- maintains the corresponding IDE support.
-
- "ide support" will generate sets of IDE files for all supported build
- environments, including Makefiles and CMake. Ading a new source file to the
- FLTK build tree is as easy as adding the file to the database and
- running Fluid.
-
- This module will give Fluid the power to create a database for FLTK based
- projects. By linking further IDE support modules, the database can be used
- to create IDE build files for many platforms, compilers, and development
- environments.
-
- This module creates a database specifically for the FLTK project itself. A
- user interface shold be created to create databases for arbitrary projects.
-
- > fluid -fltkdb <filename> # creates the fltk database
-
-
- DATABASE FORMAT
-
- The database is constructed using Fl_Preferences. Objects in the database are
- defined by using a UUID as the group name. References to objects are done using
- the same UUID as a value. The mandatory structure is defined in the first block
- below. When writing IDE files, additional optional key/value pairs may be
- generated. Their key should be marked by a unique prefix.
-
- Standard database format:
-
- /projectName: # name of the project (FLTK)
-
- /ide/ # contains IDE specific data
- /targets/ # contains various groups for differen target types
- /./libs/ # targets that will be buildt as libraries
- /././UUID/ # [multiple] description of a library target
- /./././sources/ # all source files required to build the library
- /././././UUID/ # [multiple] description of this dependency
- /./././././refUUID: # reference to file definitin in /files/
- /./././libs/ # all libraries required to build the library
- /././././.... # see /targets/libs/UUID/sources/...
- /./././fluid/ # all Fluid UI defs required to build the library
- /././././.... # see /targets/libs/UUID/sources/...
- /./././externals/ # all external libraries required to build the library
- /././././.... # see /targets/libs/UUID/sources/...
- /./././deps/ # all dependencies on other targets in this project
- /././././.... # see /targets/libs/UUID/sources/...
- /./apps/ # full blown applications
- /././UUID/ # [multiple] description of a application target
- /./././... # see /targets/libs/UUID/...
- /./tests/ # smaller test applications
- /././UUID/ # [multiple] description of a test app target
- /./././... # see /targets/libs/UUID/...
- /files/ # more information on al referenced files
- /./UUID/ # [multiple] description of a file
- /././pathAndName: # path and file name relative to the archive root
-
- Xcode3 IDE FILES: see ide_xcode.cxx
-
- VISUALC 2005 IDE FILES: not yet implemented
-
- VISUALC 2008 IDE FILES: not yet implemented
-
- VISUALC 2010 IDE FILES: not yet implemented
-
- CMAKE FILES: not yet implemented
-
- MAKEFILE SYSTEM: not yet implemented
-
- others: not yet implemented
-
- */
- #include "ide_support.h"
- #include <FL/Fl.H>
- #include <FL/fl_ask.H>
- #include <FL/Fl_Widget.H>
- #include <FL/filename.H>
- #include "Fl_Type.h"
- /*
- * Read a UUID from a database entry. If none exists, create one in the database.
- */
- void fl_getUUID(Fl_Preferences &db, const char *key, char *buffer) {
- db.get(key, buffer, "", 37);
- if (buffer[0]==0) {
- strcpy(buffer, Fl_Preferences::newUUID());
- db.set(key, buffer);
- }
- }
- /*
- * Read an Xcode ID from a database entry. If none exists, create one in the database.
- * The Xcode ID contains 24 bytes of hexadecimal chracters.
- */
- void fl_getXCID(Fl_Preferences &db, const char *key, char *buffer) {
- db.get(key, buffer, "", 25);
- if (buffer[0]==0) {
- const char *uuid = Fl_Preferences::newUUID();
- // A UUID comes in blocks of 8, 4, 4, 4, and 12 characters
- unsigned int i0, i1, i2, i3, i4, i5;
- sscanf(uuid, "%8x-%4x-%4x-%4x-%4x%8x", &i0, &i1, &i2, &i3, &i4, &i5);
- sprintf(buffer, "%8.8X%4.4X%4.4X%8.8X", i0, i1^i2, i3^i4, i5);
- db.set(key, buffer);
- }
- }
- /* A preferences node with some additional functionality */
- Fl_IDE_Prefs::Fl_IDE_Prefs(Fl_Preferences &parent, const char *name)
- : Fl_Preferences(parent, name) {
- }
- Fl_IDE_Prefs::Fl_IDE_Prefs(Fl_Preferences &parent, int ix)
- : Fl_Preferences(parent, ix) {
- }
- Fl_IDE_Prefs::Fl_IDE_Prefs(Fl_Preferences::ID id)
- : Fl_Preferences(id) {
- }
- Fl_Preferences::ID Fl_IDE_Prefs::find_by_name(const char *name) {
- int i, n = groups();
- for (i=0; i<n; i++) {
- Fl_Preferences p(this, i);
- if (strcmp(name, p.name())==0) return p.id();
- }
- return 0;
- }
- Fl_Preferences::ID Fl_IDE_Prefs::find_by_key(const char *key, const char *value) {
- int i, n = groups();
- for (i=0; i<n; i++) {
- Fl_Preferences p(this, i);
- char *v;
- p.get(key, v, "");
- if (strcmp(value, v)==0) { free(v); return p.id(); }
- free(v);
- }
- return 0;
- }
- Fl_Preferences::ID Fl_IDE_Prefs::add_with_key(const char *key, const char *value, const char *uuid) {
- Fl_Preferences::ID ret = find_by_key(key, value);
- if (!ret) {
- if (!uuid) uuid = Fl_Preferences::newUUID();
- Fl_Preferences p(this, uuid);
- p.set(key, value);
- ret = p.id();
- }
- return ret;
- }
- Fl_Target_Prefs::Fl_Target_Prefs(Fl_Preferences::ID id)
- : Fl_IDE_Prefs(id) {
- }
- Fl_Preferences::ID Fl_Target_Prefs::add_source(Fl_IDE_Prefs &fdb, const char *pathAndName) {
- Fl_IDE_Prefs file(fdb.add_with_key("pathAndName", pathAndName));
- Fl_IDE_Prefs p(*this, "sources");
- Fl_Preferences::ID id = p.add_with_key("refUUID", file.name());
- Fl_Preferences ref(id);
- ref.set("(filename)", pathAndName);
- return id;
- }
- Fl_Preferences::ID Fl_Target_Prefs::add_header(Fl_IDE_Prefs &fdb, const char *pathAndName) {
- Fl_IDE_Prefs file(fdb.add_with_key("pathAndName", pathAndName));
- Fl_IDE_Prefs p(*this, "headers");
- Fl_Preferences::ID id = p.add_with_key("refUUID", file.name());
- Fl_Preferences ref(id);
- ref.set("(filename)", pathAndName);
- return id;
- }
- Fl_Preferences::ID Fl_Target_Prefs::add_fl(Fl_IDE_Prefs &fdb, const char *pathAndName) {
- Fl_IDE_Prefs file(fdb.add_with_key("pathAndName", pathAndName));
- Fl_IDE_Prefs p(*this, "fl");
- Fl_Preferences::ID id = p.add_with_key("refUUID", file.name());
- Fl_Preferences ref(id);
- ref.set("(filename)", pathAndName);
- return id;
- }
- Fl_Preferences::ID Fl_Target_Prefs::depends_on(Fl_IDE_Prefs &dep) {
- Fl_IDE_Prefs p(*this, "deps");
- return p.add_with_key("refUUID", dep.name());
- }
- Fl_Preferences::ID Fl_Target_Prefs::add_lib(Fl_IDE_Prefs &lib) {
- this->depends_on(lib);
- Fl_IDE_Prefs p(*this, "libs");
- return p.add_with_key("refUUID", lib.name());
- }
- Fl_Preferences::ID Fl_Target_Prefs::add_external_lib(Fl_IDE_Prefs &fdb, const char *pathAndName) {
- Fl_IDE_Prefs file(fdb.add_with_key("pathAndName", pathAndName));
- Fl_IDE_Prefs p(*this, "externals");
- Fl_Preferences::ID id = p.add_with_key("refUUID", file.name());
- Fl_Preferences ref(id);
- ref.set("(filename)", pathAndName);
- return id;
- }
- Fl_File_Prefs::Fl_File_Prefs(Fl_Preferences &parent, const char *name)
- : Fl_Preferences(parent, name) {
- }
- Fl_File_Prefs::Fl_File_Prefs(Fl_Preferences &parent, int ix)
- : Fl_Preferences(parent, ix) {
- }
- Fl_File_Prefs::Fl_File_Prefs(Fl_Preferences::ID id)
- : Fl_Preferences(id) {
- }
- const char *Fl_File_Prefs::filePath() {
- char pan[1024]; get("pathAndName", pan, "DBERROR/DBERROR.DBERR", 1024);
- strcpy(pPath, pan);
- char *name = (char*)fl_filename_name(pPath);
- if (name) *name = 0;
- return pPath;
- }
- const char *Fl_File_Prefs::fileName() {
- char pan[1024]; get("pathAndName", pan, "DBERROR/DBERROR.DBERR", 1024);
- char *name = (char*)fl_filename_name(pan);
- if (name) {
- strcpy(pName, name);
- } else {
- strcpy(pName, pan);
- }
- char *ext = (char*)fl_filename_ext(pName);
- if (ext) *ext = 0;
- return pName;
- }
- const char *Fl_File_Prefs::fullName() {
- char pan[1024]; get("pathAndName", pan, "DBERROR/DBERROR.DBERR", 1024);
- char *name = (char*)fl_filename_name(pan);
- if (name) {
- strcpy(pFullName, name);
- } else {
- strcpy(pFullName, pan);
- }
- return pFullName;
- }
- const char *Fl_File_Prefs::fileExt() {
- char pan[1024]; get("pathAndName", pan, "DBERROR/DBERROR.DBERR", 1024);
- char *ext = (char*)fl_filename_ext(pan);
- if (ext) strcpy(pExt, ext);
- else pExt[0] = 0;
- return pExt;
- }
- void xcode_only(Fl_Preferences::ID id) {
- Fl_Preferences p(id);
- p.set("only", "xcode");
- }
- char with_xcode(Fl_Preferences::ID id) {
- Fl_Preferences p(id);
- if (p.entryExists("only")) {
- char os[16];
- p.get("only", os, "xcode", 15);
- return (strcmp(os, "xcode")==0);
- } else {
- return 1;
- }
- }
- void visualc_only(Fl_Preferences::ID id) {
- Fl_Preferences p(id);
- p.set("only", "visualc");
- }
- char with_visualc(Fl_Preferences::ID id) {
- Fl_Preferences p(id);
- if (p.entryExists("only")) {
- char os[16];
- p.get("only", os, "visualc", 15);
- return (strcmp(os, "visualc")==0);
- } else {
- return 1;
- }
- }
- void makefile_only(Fl_Preferences::ID id) {
- Fl_Preferences p(id);
- p.set("only", "makefile");
- }
- char with_makefile(Fl_Preferences::ID id) {
- Fl_Preferences p(id);
- if (p.entryExists("only")) {
- char os[16];
- p.get("only", os, "makefile", 15);
- return (strcmp(os, "makefile")==0);
- } else {
- return 1;
- }
- }
- //==============================================================================
- int create_new_database(const char *filename)
- {
- Fl_Preferences *db = new Fl_Preferences(filename, "fltk.org", 0);
- // TODO: we do not clear the database anymore! This shoudl keep UUID's
- // consistent and reduce the size of check-ins. When removing items from
- // the db, we have to do that manually!
- //db->clear();
-
- db->set("databaseFormat", "FLUID_IDE_DB");
- db->set("databaseVersion", "1.0");
- db->set("projectName", "fltk");
- db->set("projectVersion", "1.3.0");
-
- Fl_Preferences targets_db(db, "targets");
- Fl_IDE_Prefs files_db(*db, "files");
-
- // --- create libraries
- Fl_IDE_Prefs libs_db(targets_db, "libs");
-
- Fl_Target_Prefs fltk_lib(libs_db.add_with_key("name", "fltk")); {
- fltk_lib.add_source(files_db, "src/Fl.cxx");
- fltk_lib.add_source(files_db, "src/Fl_Adjuster.cxx");
- fltk_lib.add_source(files_db, "src/Fl_Bitmap.cxx");
- fltk_lib.add_source(files_db, "src/Fl_Box.cxx");
- fltk_lib.add_source(files_db, "src/Fl_Browser.cxx");
- fltk_lib.add_source(files_db, "src/Fl_Browser_.cxx");
- fltk_lib.add_source(files_db, "src/Fl_Browser_load.cxx");
- fltk_lib.add_source(files_db, "src/Fl_Button.cxx");
- fltk_lib.add_source(files_db, "src/Fl_Chart.cxx");
- fltk_lib.add_source(files_db, "src/Fl_Check_Browser.cxx");
- fltk_lib.add_source(files_db, "src/Fl_Check_Button.cxx");
- fltk_lib.add_source(files_db, "src/Fl_Choice.cxx");
- fltk_lib.add_source(files_db, "src/Fl_Clock.cxx");
- fltk_lib.add_source(files_db, "src/Fl_Color_Chooser.cxx");
- fltk_lib.add_source(files_db, "src/Fl_Counter.cxx");
- fltk_lib.add_source(files_db, "src/Fl_Device.cxx");
- fltk_lib.add_source(files_db, "src/Fl_Dial.cxx");
- fltk_lib.add_source(files_db, "src/Fl_Double_Window.cxx");
- fltk_lib.add_source(files_db, "src/Fl_File_Browser.cxx");
- fltk_lib.add_source(files_db, "src/Fl_File_Chooser.cxx");
- fltk_lib.add_source(files_db, "src/Fl_File_Chooser2.cxx");
- fltk_lib.add_source(files_db, "src/Fl_File_Icon.cxx");
- fltk_lib.add_source(files_db, "src/Fl_File_Input.cxx");
- fltk_lib.add_source(files_db, "src/Fl_Group.cxx");
- fltk_lib.add_source(files_db, "src/Fl_Help_View.cxx");
- fltk_lib.add_source(files_db, "src/Fl_Image.cxx");
- fltk_lib.add_source(files_db, "src/Fl_Input.cxx");
- fltk_lib.add_source(files_db, "src/Fl_Input_.cxx");
- fltk_lib.add_source(files_db, "src/Fl_Light_Button.cxx");
- fltk_lib.add_source(files_db, "src/Fl_Menu.cxx");
- fltk_lib.add_source(files_db, "src/Fl_Menu_.cxx");
- fltk_lib.add_source(files_db, "src/Fl_Menu_Bar.cxx");
- fltk_lib.add_source(files_db, "src/Fl_Menu_Button.cxx");
- fltk_lib.add_source(files_db, "src/Fl_Menu_Window.cxx");
- fltk_lib.add_source(files_db, "src/Fl_Menu_add.cxx");
- fltk_lib.add_source(files_db, "src/Fl_Menu_global.cxx");
- fltk_lib.add_source(files_db, "src/Fl_Multi_Label.cxx");
- fltk_lib.add_source(files_db, "src/Fl_Native_File_Chooser.cxx");
- fltk_lib.add_source(files_db, "src/Fl_Overlay_Window.cxx");
- fltk_lib.add_source(files_db, "src/Fl_Pack.cxx");
- fltk_lib.add_source(files_db, "src/Fl_Paged_Device.cxx");
- fltk_lib.add_source(files_db, "src/Fl_Pixmap.cxx");
- fltk_lib.add_source(files_db, "src/Fl_Positioner.cxx");
- fltk_lib.add_source(files_db, "src/Fl_Printer.cxx");
- fltk_lib.add_source(files_db, "src/Fl_Preferences.cxx");
- fltk_lib.add_source(files_db, "src/Fl_Progress.cxx");
- fltk_lib.add_source(files_db, "src/Fl_Repeat_Button.cxx");
- fltk_lib.add_source(files_db, "src/Fl_Return_Button.cxx");
- fltk_lib.add_source(files_db, "src/Fl_Roller.cxx");
- fltk_lib.add_source(files_db, "src/Fl_Round_Button.cxx");
- fltk_lib.add_source(files_db, "src/Fl_Scroll.cxx");
- fltk_lib.add_source(files_db, "src/Fl_Scrollbar.cxx");
- fltk_lib.add_source(files_db, "src/Fl_Shared_Image.cxx");
- fltk_lib.add_source(files_db, "src/Fl_Single_Window.cxx");
- fltk_lib.add_source(files_db, "src/Fl_Slider.cxx");
- fltk_lib.add_source(files_db, "src/Fl_Sys_Menu_Bar.cxx");
- fltk_lib.add_source(files_db, "src/Fl_Table.cxx");
- fltk_lib.add_source(files_db, "src/Fl_Table_Row.cxx");
- fltk_lib.add_source(files_db, "src/Fl_Tabs.cxx");
- fltk_lib.add_source(files_db, "src/Fl_Text_Buffer.cxx");
- fltk_lib.add_source(files_db, "src/Fl_Text_Display.cxx");
- fltk_lib.add_source(files_db, "src/Fl_Text_Editor.cxx");
- fltk_lib.add_source(files_db, "src/Fl_Tile.cxx");
- fltk_lib.add_source(files_db, "src/Fl_Tiled_Image.cxx");
- fltk_lib.add_source(files_db, "src/Fl_Tooltip.cxx");
- fltk_lib.add_source(files_db, "src/Fl_Tree.cxx");
- fltk_lib.add_source(files_db, "src/Fl_Tree_Item.cxx");
- fltk_lib.add_source(files_db, "src/Fl_Tree_Item_Array.cxx");
- fltk_lib.add_source(files_db, "src/Fl_Tree_Prefs.cxx");
- fltk_lib.add_source(files_db, "src/Fl_Valuator.cxx");
- fltk_lib.add_source(files_db, "src/Fl_Value_Input.cxx");
- fltk_lib.add_source(files_db, "src/Fl_Value_Output.cxx");
- fltk_lib.add_source(files_db, "src/Fl_Value_Slider.cxx");
- fltk_lib.add_source(files_db, "src/Fl_Widget.cxx");
- fltk_lib.add_source(files_db, "src/Fl_Window.cxx");
- fltk_lib.add_source(files_db, "src/Fl_Window_fullscreen.cxx");
- fltk_lib.add_source(files_db, "src/Fl_Window_hotspot.cxx");
- fltk_lib.add_source(files_db, "src/Fl_Window_iconize.cxx");
- fltk_lib.add_source(files_db, "src/Fl_Wizard.cxx");
- fltk_lib.add_source(files_db, "src/Fl_XBM_Image.cxx");
- fltk_lib.add_source(files_db, "src/Fl_XPM_Image.cxx");
- fltk_lib.add_source(files_db, "src/Fl_abort.cxx");
- fltk_lib.add_source(files_db, "src/Fl_add_idle.cxx");
- fltk_lib.add_source(files_db, "src/Fl_arg.cxx");
- fltk_lib.add_source(files_db, "src/Fl_compose.cxx");
- fltk_lib.add_source(files_db, "src/Fl_display.cxx");
- fltk_lib.add_source(files_db, "src/Fl_get_key.cxx");
- fltk_lib.add_source(files_db, "src/Fl_get_system_colors.cxx");
- fltk_lib.add_source(files_db, "src/Fl_grab.cxx");
- fltk_lib.add_source(files_db, "src/Fl_lock.cxx");
- fltk_lib.add_source(files_db, "src/Fl_own_colormap.cxx");
- fltk_lib.add_source(files_db, "src/Fl_visual.cxx");
- fltk_lib.add_source(files_db, "src/Fl_x.cxx");
- fltk_lib.add_source(files_db, "src/cmap.cxx");
- fltk_lib.add_source(files_db, "src/filename_absolute.cxx");
- fltk_lib.add_source(files_db, "src/filename_expand.cxx");
- fltk_lib.add_source(files_db, "src/filename_ext.cxx");
- fltk_lib.add_source(files_db, "src/filename_isdir.cxx");
- fltk_lib.add_source(files_db, "src/filename_list.cxx");
- fltk_lib.add_source(files_db, "src/filename_match.cxx");
- fltk_lib.add_source(files_db, "src/filename_setext.cxx");
- fltk_lib.add_source(files_db, "src/fl_arc.cxx");
- fltk_lib.add_source(files_db, "src/fl_arci.cxx");
- fltk_lib.add_source(files_db, "src/fl_ask.cxx");
- fltk_lib.add_source(files_db, "src/fl_boxtype.cxx");
- fltk_lib.add_source(files_db, "src/fl_call_main.c");
- fltk_lib.add_source(files_db, "src/fl_color.cxx");
- fltk_lib.add_source(files_db, "src/fl_cursor.cxx");
- fltk_lib.add_source(files_db, "src/fl_curve.cxx");
- fltk_lib.add_source(files_db, "src/fl_diamond_box.cxx");
- fltk_lib.add_source(files_db, "src/fl_dnd.cxx");
- fltk_lib.add_source(files_db, "src/fl_draw.cxx");
- fltk_lib.add_source(files_db, "src/fl_draw_image.cxx");
- fltk_lib.add_source(files_db, "src/fl_draw_pixmap.cxx");
- fltk_lib.add_source(files_db, "src/fl_encoding_latin1.cxx");
- fltk_lib.add_source(files_db, "src/fl_encoding_mac_roman.cxx");
- fltk_lib.add_source(files_db, "src/fl_engraved_label.cxx");
- fltk_lib.add_source(files_db, "src/fl_file_dir.cxx");
- fltk_lib.add_source(files_db, "src/fl_font.cxx");
- fltk_lib.add_source(files_db, "src/fl_gtk.cxx");
- fltk_lib.add_source(files_db, "src/fl_labeltype.cxx");
- fltk_lib.add_source(files_db, "src/fl_line_style.cxx");
- fltk_lib.add_source(files_db, "src/fl_open_uri.cxx");
- fltk_lib.add_source(files_db, "src/fl_oval_box.cxx");
- fltk_lib.add_source(files_db, "src/fl_overlay.cxx");
- fltk_lib.add_source(files_db, "src/fl_overlay_visual.cxx");
- fltk_lib.add_source(files_db, "src/fl_plastic.cxx");
- fltk_lib.add_source(files_db, "src/fl_read_image.cxx");
- fltk_lib.add_source(files_db, "src/fl_rect.cxx");
- fltk_lib.add_source(files_db, "src/fl_round_box.cxx");
- fltk_lib.add_source(files_db, "src/fl_rounded_box.cxx");
- fltk_lib.add_source(files_db, "src/fl_scroll_area.cxx");
- fltk_lib.add_source(files_db, "src/fl_set_font.cxx");
- fltk_lib.add_source(files_db, "src/fl_set_fonts.cxx");
- fltk_lib.add_source(files_db, "src/fl_shadow_box.cxx");
- fltk_lib.add_source(files_db, "src/fl_shortcut.cxx");
- fltk_lib.add_source(files_db, "src/fl_show_colormap.cxx");
- fltk_lib.add_source(files_db, "src/fl_symbols.cxx");
- fltk_lib.add_source(files_db, "src/fl_utf.c");
- fltk_lib.add_source(files_db, "src/fl_utf8.cxx");
- fltk_lib.add_source(files_db, "src/fl_vertex.cxx");
- fltk_lib.add_source(files_db, "src/flstring.c");
- fltk_lib.add_source(files_db, "src/numericsort.c");
- fltk_lib.add_source(files_db, "src/ps_image.cxx");
- fltk_lib.add_source(files_db, "src/scandir.c");
- fltk_lib.add_source(files_db, "src/screen_xywh.cxx");
- fltk_lib.add_source(files_db, "src/vsnprintf.c");
- fltk_lib.add_source(files_db, "src/xutf8/case.c");
- fltk_lib.add_source(files_db, "src/xutf8/is_right2left.c");
- fltk_lib.add_source(files_db, "src/xutf8/is_spacing.c");
- xcode_only(fltk_lib.add_source(files_db, "src/Fl_cocoa.mm"));
- xcode_only(fltk_lib.add_source(files_db, "src/Fl_Quartz_Printer.mm"));
- xcode_only(fltk_lib.add_source(files_db, "src/Fl_Native_File_Chooser_MAC.mm"));
-
- fltk_lib.add_header(files_db, "FL/Enumerations.H");
- fltk_lib.add_header(files_db, "FL/Fl.H");
- fltk_lib.add_header(files_db, "FL/Fl_Adjuster.H");
- fltk_lib.add_header(files_db, "FL/Fl_Bitmap.H");
- fltk_lib.add_header(files_db, "FL/Fl_Box.H");
- fltk_lib.add_header(files_db, "FL/Fl_Browser.H");
- fltk_lib.add_header(files_db, "FL/Fl_Browser_.H");
- fltk_lib.add_header(files_db, "FL/Fl_Button.H");
- fltk_lib.add_header(files_db, "FL/Fl_Cairo.H");
- fltk_lib.add_header(files_db, "FL/Fl_Cairo_Window.H");
- fltk_lib.add_header(files_db, "FL/Fl_Chart.H");
- fltk_lib.add_header(files_db, "FL/Fl_Check_Browser.H");
- fltk_lib.add_header(files_db, "FL/Fl_Check_Button.H");
- fltk_lib.add_header(files_db, "FL/Fl_Choice.H");
- fltk_lib.add_header(files_db, "FL/Fl_Clock.H");
- fltk_lib.add_header(files_db, "FL/Fl_Color_Chooser.H");
- fltk_lib.add_header(files_db, "FL/Fl_Counter.H");
- fltk_lib.add_header(files_db, "FL/Fl_Device.H");
- fltk_lib.add_header(files_db, "FL/Fl_Dial.H");
- fltk_lib.add_header(files_db, "FL/Fl_Double_Window.H");
- fltk_lib.add_header(files_db, "FL/Fl_Export.H");
- fltk_lib.add_header(files_db, "FL/Fl_File_Browser.H");
- fltk_lib.add_header(files_db, "FL/Fl_File_Chooser.H");
- fltk_lib.add_header(files_db, "FL/Fl_File_Icon.H");
- fltk_lib.add_header(files_db, "FL/Fl_File_Input.H");
- fltk_lib.add_header(files_db, "FL/Fl_Fill_Dial.H");
- fltk_lib.add_header(files_db, "FL/Fl_Fill_Slider.H");
- fltk_lib.add_header(files_db, "FL/Fl_Float_Input.H");
- fltk_lib.add_header(files_db, "FL/Fl_FormsBitmap.H");
- fltk_lib.add_header(files_db, "FL/Fl_FormsPixmap.H");
- fltk_lib.add_header(files_db, "FL/Fl_Free.H");
- fltk_lib.add_header(files_db, "FL/Fl_Group.H");
- fltk_lib.add_header(files_db, "FL/Fl_Hold_Browser.H");
- fltk_lib.add_header(files_db, "FL/Fl_Hor_Fill_Slider.H");
- fltk_lib.add_header(files_db, "FL/Fl_Hor_Nice_Slider.H");
- fltk_lib.add_header(files_db, "FL/Fl_Hor_Slider.H");
- fltk_lib.add_header(files_db, "FL/Fl_Hor_Value_Slider.H");
- fltk_lib.add_header(files_db, "FL/Fl_Image.H");
- fltk_lib.add_header(files_db, "FL/Fl_Input.H");
- fltk_lib.add_header(files_db, "FL/Fl_Input_.H");
- fltk_lib.add_header(files_db, "FL/Fl_Input_Choice.H");
- fltk_lib.add_header(files_db, "FL/Fl_Int_Input.H");
- fltk_lib.add_header(files_db, "FL/Fl_Light_Button.H");
- fltk_lib.add_header(files_db, "FL/Fl_Line_Dial.H");
- fltk_lib.add_header(files_db, "FL/Fl_Menu.H");
- fltk_lib.add_header(files_db, "FL/Fl_Menu_.H");
- fltk_lib.add_header(files_db, "FL/Fl_Menu_Bar.H");
- fltk_lib.add_header(files_db, "FL/Fl_Menu_Button.H");
- fltk_lib.add_header(files_db, "FL/Fl_Menu_Item.H");
- fltk_lib.add_header(files_db, "FL/Fl_Menu_Window.H");
- fltk_lib.add_header(files_db, "FL/Fl_Multi_Browser.H");
- fltk_lib.add_header(files_db, "FL/Fl_Multi_Label.H");
- fltk_lib.add_header(files_db, "FL/Fl_Multiline_Input.H");
- fltk_lib.add_header(files_db, "FL/Fl_Multiline_Output.H");
- fltk_lib.add_header(files_db, "FL/Fl_Native_File_Chooser.H");
- fltk_lib.add_header(files_db, "FL/Fl_Nice_Slider.H");
- fltk_lib.add_header(files_db, "FL/Fl_Object.H");
- fltk_lib.add_header(files_db, "FL/Fl_Output.H");
- fltk_lib.add_header(files_db, "FL/Fl_Overlay_Window.H");
- fltk_lib.add_header(files_db, "FL/Fl_Pack.H");
- fltk_lib.add_header(files_db, "FL/Fl_Paged_Device.H");
- fltk_lib.add_header(files_db, "FL/Fl_Pixmap.H");
- fltk_lib.add_header(files_db, "FL/Fl_Plugin.H");
- fltk_lib.add_header(files_db, "FL/Fl_Positioner.H");
- fltk_lib.add_header(files_db, "FL/Fl_Preferences.H");
- fltk_lib.add_header(files_db, "FL/Fl_Printer.H");
- fltk_lib.add_header(files_db, "FL/Fl_Progress.H");
- fltk_lib.add_header(files_db, "FL/Fl_RGB_Image.H");
- fltk_lib.add_header(files_db, "FL/Fl_Radio_Button.H");
- fltk_lib.add_header(files_db, "FL/Fl_Radio_Light_Button.H");
- fltk_lib.add_header(files_db, "FL/Fl_Radio_Round_Button.H");
- fltk_lib.add_header(files_db, "FL/Fl_Repeat_Button.H");
- fltk_lib.add_header(files_db, "FL/Fl_Return_Button.H");
- fltk_lib.add_header(files_db, "FL/Fl_Roller.H");
- fltk_lib.add_header(files_db, "FL/Fl_Round_Button.H");
- fltk_lib.add_header(files_db, "FL/Fl_Round_Clock.H");
- fltk_lib.add_header(files_db, "FL/Fl_Scroll.H");
- fltk_lib.add_header(files_db, "FL/Fl_Scrollbar.H");
- fltk_lib.add_header(files_db, "FL/Fl_Secret_Input.H");
- fltk_lib.add_header(files_db, "FL/Fl_Select_Browser.H");
- fltk_lib.add_header(files_db, "FL/Fl_Shared_Image.H");
- fltk_lib.add_header(files_db, "FL/Fl_Simple_Counter.H");
- fltk_lib.add_header(files_db, "FL/Fl_Single_Window.H");
- fltk_lib.add_header(files_db, "FL/Fl_Slider.H");
- fltk_lib.add_header(files_db, "FL/Fl_Spinner.H");
- fltk_lib.add_header(files_db, "FL/Fl_Sys_Menu_Bar.H");
- fltk_lib.add_header(files_db, "FL/Fl_Table.H");
- fltk_lib.add_header(files_db, "FL/Fl_Table_Row.H");
- fltk_lib.add_header(files_db, "FL/Fl_Tabs.H");
- fltk_lib.add_header(files_db, "FL/Fl_Text_Buffer.H");
- fltk_lib.add_header(files_db, "FL/Fl_Text_Display.H");
- fltk_lib.add_header(files_db, "FL/Fl_Text_Editor.H");
- fltk_lib.add_header(files_db, "FL/Fl_Tile.H");
- fltk_lib.add_header(files_db, "FL/Fl_Tiled_Image.H");
- fltk_lib.add_header(files_db, "FL/Fl_Timer.H");
- fltk_lib.add_header(files_db, "FL/Fl_Toggle_Button.H");
- fltk_lib.add_header(files_db, "FL/Fl_Toggle_Light_Button.H");
- fltk_lib.add_header(files_db, "FL/Fl_Toggle_Round_Button.H");
- fltk_lib.add_header(files_db, "FL/Fl_Tooltip.H");
- fltk_lib.add_header(files_db, "FL/Fl_Tree.H");
- fltk_lib.add_header(files_db, "FL/Fl_Tree_Item.H");
- fltk_lib.add_header(files_db, "FL/Fl_Tree_Item_Array.H");
- fltk_lib.add_header(files_db, "FL/Fl_Tree_Prefs.H");
- fltk_lib.add_header(files_db, "FL/Fl_Valuator.H");
- fltk_lib.add_header(files_db, "FL/Fl_Value_Input.H");
- fltk_lib.add_header(files_db, "FL/Fl_Value_Output.H");
- fltk_lib.add_header(files_db, "FL/Fl_Value_Slider.H");
- fltk_lib.add_header(files_db, "FL/Fl_Widget.H");
- fltk_lib.add_header(files_db, "FL/Fl_Window.H");
- fltk_lib.add_header(files_db, "FL/Fl_Wizard.H");
- fltk_lib.add_header(files_db, "FL/Fl_XBM_Image.H");
- fltk_lib.add_header(files_db, "FL/Fl_XPM_Image.H");
- fltk_lib.add_header(files_db, "FL/Xutf8.h");
- fltk_lib.add_header(files_db, "FL/dirent.h");
- fltk_lib.add_header(files_db, "FL/filename.H");
- fltk_lib.add_header(files_db, "FL/fl_ask.H");
- fltk_lib.add_header(files_db, "FL/fl_draw.H");
- fltk_lib.add_header(files_db, "FL/fl_message.H");
- fltk_lib.add_header(files_db, "FL/fl_show_colormap.H");
- fltk_lib.add_header(files_db, "FL/fl_show_input.H");
- fltk_lib.add_header(files_db, "FL/fl_types.h");
- fltk_lib.add_header(files_db, "FL/fl_utf8.h");
- fltk_lib.add_header(files_db, "FL/mac.H");
- fltk_lib.add_header(files_db, "FL/math.h");
- fltk_lib.add_header(files_db, "FL/names.h");
- fltk_lib.add_header(files_db, "FL/win32.H");
- fltk_lib.add_header(files_db, "FL/x.H");
-
- xcode_only(fltk_lib.add_external_lib(files_db, "/System/Library/Frameworks/AudioToolbox.framework"));
- }
-
- Fl_Target_Prefs fltk_gl_lib(libs_db.add_with_key("name", "fltk_gl")); {
- fltk_gl_lib.add_source(files_db, "src/Fl_Gl_Choice.cxx");
- fltk_gl_lib.add_source(files_db, "src/Fl_Gl_Device_Plugin.cxx");
- fltk_gl_lib.add_source(files_db, "src/Fl_Gl_Overlay.cxx");
- fltk_gl_lib.add_source(files_db, "src/Fl_Gl_Window.cxx");
- fltk_gl_lib.add_source(files_db, "src/freeglut_geometry.cxx");
- fltk_gl_lib.add_source(files_db, "src/freeglut_stroke_mono_roman.cxx");
- fltk_gl_lib.add_source(files_db, "src/freeglut_stroke_roman.cxx");
- fltk_gl_lib.add_source(files_db, "src/freeglut_teapot.cxx");
- fltk_gl_lib.add_source(files_db, "src/gl_draw.cxx");
- fltk_gl_lib.add_source(files_db, "src/glut_compatability.cxx");
- fltk_gl_lib.add_source(files_db, "src/glut_font.cxx");
-
- fltk_gl_lib.add_header(files_db, "FL/Fl_Gl_Window.H");
- fltk_gl_lib.add_header(files_db, "FL/gl.h");
- fltk_gl_lib.add_header(files_db, "FL/gl2opengl.h");
- fltk_gl_lib.add_header(files_db, "FL/gl_draw.H");
- fltk_gl_lib.add_header(files_db, "FL/glu.h");
- fltk_gl_lib.add_header(files_db, "FL/glut.H");
-
- xcode_only(fltk_gl_lib.add_external_lib(files_db, "/System/Library/Frameworks/OpenGL.framework"));
- xcode_only(fltk_gl_lib.add_external_lib(files_db, "/System/Library/Frameworks/AGL.framework"));
- fltk_gl_lib.add_lib(fltk_lib);
- }
-
- Fl_Target_Prefs fltk_images_lib(libs_db.add_with_key("name", "fltk_images")); {
- fltk_images_lib.add_source(files_db, "src/Fl_BMP_Image.cxx");
- fltk_images_lib.add_source(files_db, "src/Fl_File_Icon2.cxx");
- fltk_images_lib.add_source(files_db, "src/Fl_GIF_Image.cxx");
- fltk_images_lib.add_source(files_db, "src/Fl_Help_Dialog.cxx");
- fltk_images_lib.add_source(files_db, "src/Fl_JPEG_Image.cxx");
- fltk_images_lib.add_source(files_db, "src/Fl_PNG_Image.cxx");
- fltk_images_lib.add_source(files_db, "src/Fl_PNM_Image.cxx");
- fltk_images_lib.add_source(files_db, "src/fl_images_core.cxx");
-
- fltk_images_lib.add_header(files_db, "FL/Fl_BMP_Image.H");
- fltk_images_lib.add_header(files_db, "FL/Fl_GIF_Image.H");
- fltk_images_lib.add_header(files_db, "FL/Fl_Help_Dialog.H");
- fltk_images_lib.add_header(files_db, "FL/Fl_Help_View.H");
- fltk_images_lib.add_header(files_db, "FL/Fl_JPEG_Image.H");
- fltk_images_lib.add_header(files_db, "FL/Fl_PNG_Image.H");
- fltk_images_lib.add_header(files_db, "FL/Fl_PNM_Image.H");
-
- fltk_images_lib.add_lib(fltk_lib);
- }
-
- Fl_Target_Prefs fltk_png_lib(libs_db.add_with_key("name", "fltk_png")); {
- fltk_png_lib.add_source(files_db, "png/png.c");
- fltk_png_lib.add_source(files_db, "png/pngerror.c");
- fltk_png_lib.add_source(files_db, "png/pngget.c");
- fltk_png_lib.add_source(files_db, "png/pngmem.c");
- fltk_png_lib.add_source(files_db, "png/pngpread.c");
- fltk_png_lib.add_source(files_db, "png/pngread.c");
- fltk_png_lib.add_source(files_db, "png/pngrio.c");
- fltk_png_lib.add_source(files_db, "png/pngrtran.c");
- fltk_png_lib.add_source(files_db, "png/pngrutil.c");
- fltk_png_lib.add_source(files_db, "png/pngset.c");
- fltk_png_lib.add_source(files_db, "png/pngtrans.c");
- fltk_png_lib.add_source(files_db, "png/pngwio.c");
- fltk_png_lib.add_source(files_db, "png/pngwrite.c");
- fltk_png_lib.add_source(files_db, "png/pngwtran.c");
- fltk_png_lib.add_source(files_db, "png/pngwutil.c");
- xcode_only(fltk_png_lib.add_external_lib(files_db, "/usr/lib/libz.dylib"));
- fltk_images_lib.add_lib(fltk_png_lib);
- }
-
- Fl_Target_Prefs fltk_jpeg_lib(libs_db.add_with_key("name", "fltk_jpeg")); {
- fltk_jpeg_lib.add_source(files_db, "jpeg/jcapimin.c");
- fltk_jpeg_lib.add_source(files_db, "jpeg/jcapistd.c");
- fltk_jpeg_lib.add_source(files_db, "jpeg/jccoefct.c");
- fltk_jpeg_lib.add_source(files_db, "jpeg/jccolor.c");
- fltk_jpeg_lib.add_source(files_db, "jpeg/jcdctmgr.c");
- fltk_jpeg_lib.add_source(files_db, "jpeg/jchuff.c");
- fltk_jpeg_lib.add_source(files_db, "jpeg/jcinit.c");
- fltk_jpeg_lib.add_source(files_db, "jpeg/jcmainct.c");
- fltk_jpeg_lib.add_source(files_db, "jpeg/jcmarker.c");
- fltk_jpeg_lib.add_source(files_db, "jpeg/jcmaster.c");
- fltk_jpeg_lib.add_source(files_db, "jpeg/jcomapi.c");
- fltk_jpeg_lib.add_source(files_db, "jpeg/jcparam.c");
- fltk_jpeg_lib.add_source(files_db, "jpeg/jcphuff.c");
- fltk_jpeg_lib.add_source(files_db, "jpeg/jcprepct.c");
- fltk_jpeg_lib.add_source(files_db, "jpeg/jcsample.c");
- fltk_jpeg_lib.add_source(files_db, "jpeg/jctrans.c");
- fltk_jpeg_lib.add_source(files_db, "jpeg/jdapimin.c");
- fltk_jpeg_lib.add_source(files_db, "jpeg/jdapistd.c");
- fltk_jpeg_lib.add_source(files_db, "jpeg/jdatadst.c");
- fltk_jpeg_lib.add_source(files_db, "jpeg/jdatasrc.c");
- fltk_jpeg_lib.add_source(files_db, "jpeg/jdcoefct.c");
- fltk_jpeg_lib.add_source(files_db, "jpeg/jdcolor.c");
- fltk_jpeg_lib.add_source(files_db, "jpeg/jddctmgr.c");
- fltk_jpeg_lib.add_source(files_db, "jpeg/jdhuff.c");
- fltk_jpeg_lib.add_source(files_db, "jpeg/jdinput.c");
- fltk_jpeg_lib.add_source(files_db, "jpeg/jdmainct.c");
- fltk_jpeg_lib.add_source(files_db, "jpeg/jdmarker.c");
- fltk_jpeg_lib.add_source(files_db, "jpeg/jdmaster.c");
- fltk_jpeg_lib.add_source(files_db, "jpeg/jdmerge.c");
- fltk_jpeg_lib.add_source(files_db, "jpeg/jdphuff.c");
- fltk_jpeg_lib.add_source(files_db, "jpeg/jdpostct.c");
- fltk_jpeg_lib.add_source(files_db, "jpeg/jdsample.c");
- fltk_jpeg_lib.add_source(files_db, "jpeg/jdtrans.c");
- fltk_jpeg_lib.add_source(files_db, "jpeg/jerror.c");
- fltk_jpeg_lib.add_source(files_db, "jpeg/jfdctflt.c");
- fltk_jpeg_lib.add_source(files_db, "jpeg/jfdctfst.c");
- fltk_jpeg_lib.add_source(files_db, "jpeg/jfdctint.c");
- fltk_jpeg_lib.add_source(files_db, "jpeg/jidctflt.c");
- fltk_jpeg_lib.add_source(files_db, "jpeg/jidctfst.c");
- fltk_jpeg_lib.add_source(files_db, "jpeg/jidctint.c");
- fltk_jpeg_lib.add_source(files_db, "jpeg/jidctred.c");
- fltk_jpeg_lib.add_source(files_db, "jpeg/jmemmgr.c");
- fltk_jpeg_lib.add_source(files_db, "jpeg/jmemnobs.c");
- fltk_jpeg_lib.add_source(files_db, "jpeg/jquant1.c");
- fltk_jpeg_lib.add_source(files_db, "jpeg/jquant2.c");
- fltk_jpeg_lib.add_source(files_db, "jpeg/jutils.c");
- fltk_jpeg_lib.add_lib(fltk_lib);
- fltk_images_lib.add_lib(fltk_jpeg_lib);
- }
-
- Fl_Target_Prefs fltk_forms_lib(libs_db.add_with_key("name", "fltk_forms")); {
- fltk_forms_lib.add_source(files_db, "src/forms_bitmap.cxx");
- fltk_forms_lib.add_source(files_db, "src/forms_compatability.cxx");
- fltk_forms_lib.add_source(files_db, "src/forms_free.cxx");
- fltk_forms_lib.add_source(files_db, "src/forms_fselect.cxx");
- fltk_forms_lib.add_source(files_db, "src/forms_pixmap.cxx");
- fltk_forms_lib.add_source(files_db, "src/forms_timer.cxx");
- fltk_forms_lib.add_header(files_db, "FL/forms.H");
- fltk_forms_lib.add_lib(fltk_lib);
- }
-
- Fl_Target_Prefs fltk_z_lib(libs_db.add_with_key("name", "fltk_zlib")); {
- fltk_z_lib.add_source(files_db, "zlib/adler32.c");
- fltk_z_lib.add_source(files_db, "zlib/compress.c");
- fltk_z_lib.add_source(files_db, "zlib/crc32.c");
- fltk_z_lib.add_source(files_db, "zlib/deflate.c");
- fltk_z_lib.add_source(files_db, "zlib/gzio.c");
- fltk_z_lib.add_source(files_db, "zlib/inffast.c");
- fltk_z_lib.add_source(files_db, "zlib/inflate.c");
- fltk_z_lib.add_source(files_db, "zlib/inftrees.c");
- fltk_z_lib.add_source(files_db, "zlib/trees.c");
- fltk_z_lib.add_source(files_db, "zlib/uncompr.c");
- fltk_z_lib.add_source(files_db, "zlib/zutil.c");
- fltk_png_lib.add_lib(fltk_z_lib);
- }
-
- // --- create applications
- Fl_IDE_Prefs apps_db(targets_db, "apps");
-
- Fl_Target_Prefs fluid_app(apps_db.add_with_key("name", "Fluid")); {
- fluid_app.add_source(files_db, "fluid/CodeEditor.cxx");
- fluid_app.add_source(files_db, "fluid/Fl_Function_Type.cxx");
- fluid_app.add_source(files_db, "fluid/Fl_Group_Type.cxx");
- fluid_app.add_source(files_db, "fluid/Fl_Menu_Type.cxx");
- fluid_app.add_source(files_db, "fluid/Fl_Type.cxx");
- fluid_app.add_source(files_db, "fluid/Fl_Widget_Type.cxx");
- fluid_app.add_source(files_db, "fluid/Fl_Window_Type.cxx");
- fluid_app.add_source(files_db, "fluid/Fluid_Image.cxx");
- fluid_app.add_source(files_db, "fluid/about_panel.cxx");
- fluid_app.add_source(files_db, "fluid/align_widget.cxx");
- fluid_app.add_source(files_db, "fluid/alignment_panel.cxx");
- fluid_app.add_source(files_db, "fluid/code.cxx");
- fluid_app.add_source(files_db, "fluid/factory.cxx");
- fluid_app.add_source(files_db, "fluid/file.cxx");
- fluid_app.add_source(files_db, "fluid/fluid.cxx");
- fluid_app.add_source(files_db, "fluid/function_panel.cxx");
- fluid_app.add_source(files_db, "fluid/ide_maketools.cxx");
- fluid_app.add_source(files_db, "fluid/ide_support.cxx");
- fluid_app.add_source(files_db, "fluid/ide_visualc.cxx");
- fluid_app.add_source(files_db, "fluid/ide_xcode.cxx");
- fluid_app.add_source(files_db, "fluid/template_panel.cxx");
- fluid_app.add_source(files_db, "fluid/undo.cxx");
- fluid_app.add_source(files_db, "fluid/widget_panel.cxx");
- fluid_app.add_header(files_db, "fluid/CodeEditor.h");
- fluid_app.add_header(files_db, "fluid/Fl_Type.h");
- fluid_app.add_header(files_db, "fluid/Fl_Widget_Type.h");
- fluid_app.add_header(files_db, "fluid/Fluid_Image.h");
- fluid_app.add_header(files_db, "fluid/Shortcut_Button.h");
- fluid_app.add_header(files_db, "fluid/about_panel.h");
- fluid_app.add_header(files_db, "fluid/alignment_panel.h");
- fluid_app.add_header(files_db, "fluid/comments.h");
- fluid_app.add_header(files_db, "fluid/function_panel.h");
- fluid_app.add_header(files_db, "fluid/ide_support.h");
- fluid_app.add_header(files_db, "fluid/print_panel.h");
- fluid_app.add_header(files_db, "fluid/template_panel.h");
- fluid_app.add_header(files_db, "fluid/undo.h");
- fluid_app.add_header(files_db, "fluid/widget_panel.h");
-
- fluid_app.add_lib(fltk_lib);
- fluid_app.add_lib(fltk_forms_lib);
- fluid_app.add_lib(fltk_images_lib);
- fluid_app.add_lib(fltk_jpeg_lib);
- fluid_app.add_lib(fltk_png_lib);
- fluid_app.add_lib(fltk_z_lib);
- visualc_only(fluid_app.add_lib(fltk_z_lib));
- xcode_only(fluid_app.add_external_lib(files_db, "icons/fluid.icns"));
- }
-
- // --- create test applications
- Fl_IDE_Prefs tests_db(targets_db, "tests");
-
- Fl_Target_Prefs demo_db(tests_db.add_with_key("name", "Demo")); {
- demo_db.add_source(files_db, "test/demo.cxx");
- demo_db.add_lib(fltk_lib);
- demo_db.depends_on(fluid_app);
- }
-
- { Fl_Target_Prefs db(tests_db.add_with_key("name", "adjuster"));
- db.add_source(files_db, "test/adjuster.cxx");
- db.add_lib(fltk_lib);
- demo_db.depends_on(db);
- }
-
- { Fl_Target_Prefs db(tests_db.add_with_key("name", "arc"));
- db.add_source(files_db, "test/arc.cxx");
- db.add_lib(fltk_lib);
- demo_db.depends_on(db);
- }
-
- { Fl_Target_Prefs db(tests_db.add_with_key("name", "ask"));
- db.add_source(files_db, "test/ask.cxx");
- db.add_lib(fltk_lib);
- demo_db.depends_on(db);
- }
-
- { Fl_Target_Prefs db(tests_db.add_with_key("name", "bitmap"));
- db.add_source(files_db, "test/bitmap.cxx");
- db.add_lib(fltk_lib);
- demo_db.depends_on(db);
- }
-
- { Fl_Target_Prefs db(tests_db.add_with_key("name", "blocks"));
- db.add_source(files_db, "test/blocks.cxx");
- db.add_lib(fltk_lib);
- xcode_only(db.add_external_lib(files_db, "/System/Library/Frameworks/CoreAudio.framework"));
- visualc_only(db.add_external_lib(files_db, "winmm.lib"));
- demo_db.depends_on(db);
- }
-
- { Fl_Target_Prefs db(tests_db.add_with_key("name", "boxtype"));
- db.add_source(files_db, "test/boxtype.cxx");
- db.add_lib(fltk_lib);
- demo_db.depends_on(db);
- }
-
- { Fl_Target_Prefs db(tests_db.add_with_key("name", "browser"));
- db.add_source(files_db, "test/browser.cxx");
- db.add_lib(fltk_lib);
- demo_db.depends_on(db);
- }
-
- { Fl_Target_Prefs db(tests_db.add_with_key("name", "button"));
- db.add_source(files_db, "test/button.cxx");
- db.add_lib(fltk_lib);
- demo_db.depends_on(db);
- }
-
- { Fl_Target_Prefs db(tests_db.add_with_key("name", "buttons"));
- db.add_source(files_db, "test/buttons.cxx");
- db.add_lib(fltk_lib);
- demo_db.depends_on(db);
- }
-
- { Fl_Target_Prefs db(tests_db.add_with_key("name", "checkers"));
- db.add_source(files_db, "test/checkers.cxx");
- db.add_lib(fltk_lib);
- demo_db.depends_on(db);
- }
-
- { Fl_Target_Prefs db(tests_db.add_with_key("name", "clock"));
- db.add_source(files_db, "test/clock.cxx");
- db.add_lib(fltk_lib);
- demo_db.depends_on(db);
- }
-
- { Fl_Target_Prefs db(tests_db.add_with_key("name", "colbrowser"));
- db.add_source(files_db, "test/colbrowser.cxx");
- db.add_lib(fltk_lib);
- db.add_lib(fltk_forms_lib);
- demo_db.depends_on(db);
- }
-
- { Fl_Target_Prefs db(tests_db.add_with_key("name", "color_chooser"));
- db.add_source(files_db, "test/color_chooser.cxx");
- db.add_lib(fltk_lib);
- demo_db.depends_on(db);
- }
-
- { Fl_Target_Prefs db(tests_db.add_with_key("name", "cube"));
- db.add_source(files_db, "test/cube.cxx");
- db.add_lib(fltk_lib);
- db.add_lib(fltk_gl_lib);
- xcode_only(db.add_external_lib(files_db, "/System/Library/Frameworks/OpenGL.framework"));
- xcode_only(db.add_external_lib(files_db, "/System/Library/Frameworks/AGL.framework"));
- visualc_only(db.add_external_lib(files_db, "glu32.lib"));
- visualc_only(db.add_external_lib(files_db, "opengl32.lib"));
- demo_db.depends_on(db);
- }
-
- { Fl_Target_Prefs db(tests_db.add_with_key("name", "CubeView"));
- db.add_source(files_db, "test/CubeView.cxx");
- db.add_source(files_db, "test/CubeMain.cxx");
- db.add_fl(files_db, "test/CubeViewUI.fl");
- db.add_lib(fltk_lib);
- db.add_lib(fltk_gl_lib);
- xcode_only(db.add_external_lib(files_db, "/System/Library/Frameworks/OpenGL.framework"));
- xcode_only(db.add_external_lib(files_db, "/System/Library/Frameworks/AGL.framework"));
- visualc_only(db.add_external_lib(files_db, "glu32.lib"));
- visualc_only(db.add_external_lib(files_db, "opengl32.lib"));
- db.depends_on(fluid_app);
- demo_db.depends_on(db);
- }
-
- { Fl_Target_Prefs db(tests_db.add_with_key("name", "cursor"));
- db.add_source(files_db, "test/cursor.cxx");
- db.add_lib(fltk_lib);
- demo_db.depends_on(db);
- }
-
- { Fl_Target_Prefs db(tests_db.add_with_key("name", "curve"));
- db.add_source(files_db, "test/curve.cxx");
- db.add_lib(fltk_lib);
- demo_db.depends_on(db);
- }
-
- { Fl_Target_Prefs db(tests_db.add_with_key("name", "device"));
- db.add_source(files_db, "test/device.cxx");
- db.add_lib(fltk_lib);
- db.add_lib(fltk_images_lib);
- db.add_lib(fltk_jpeg_lib);
- db.add_lib(fltk_png_lib);
- db.add_lib(fltk_z_lib);
- demo_db.depends_on(db);
- }
-
- { Fl_Target_Prefs db(tests_db.add_with_key("name", "doublebuffer"));
- db.add_source(files_db, "test/doublebuffer.cxx");
- db.add_lib(fltk_lib);
- demo_db.depends_on(db);
- }
-
- { Fl_Target_Prefs db(tests_db.add_with_key("name", "editor"));
- db.add_source(files_db, "test/editor.cxx");
- db.add_lib(fltk_lib);
- demo_db.depends_on(db);
- }
-
- { Fl_Target_Prefs db(tests_db.add_with_key("name", "fast_slow"));
- db.add_fl(files_db, "test/fast_slow.fl");
- db.add_lib(fltk_lib);
- db.depends_on(fluid_app);
- demo_db.depends_on(db);
- }
-
- { Fl_Target_Prefs db(tests_db.add_with_key("name", "file_chooser"));
- db.add_source(files_db, "test/file_chooser.cxx");
- db.add_lib(fltk_lib);
- db.add_lib(fltk_images_lib);
- db.add_lib(fltk_jpeg_lib);
- db.add_lib(fltk_png_lib);
- db.add_lib(fltk_z_lib);
- demo_db.depends_on(db);
- }
-
- { Fl_Target_Prefs db(tests_db.add_with_key("name", "fonts"));
- db.add_source(files_db, "test/fonts.cxx");
- db.add_lib(fltk_lib);
- demo_db.depends_on(db);
- }
-
- { Fl_Target_Prefs db(tests_db.add_with_key("name", "forms"));
- db.add_source(files_db, "test/forms.cxx");
- db.add_lib(fltk_lib);
- db.add_lib(fltk_forms_lib);
- demo_db.depends_on(db);
- }
-
- { Fl_Target_Prefs db(tests_db.add_with_key("name", "fractals"));
- db.add_source(files_db, "test/fractals.cxx");
- db.add_source(files_db, "test/fracviewer.cxx");
- db.add_lib(fltk_lib);
- db.add_lib(fltk_gl_lib);
- xcode_only(db.add_external_lib(files_db, "/System/Library/Frameworks/OpenGL.framework"));
- xcode_only(db.add_external_lib(files_db, "/System/Library/Frameworks/AGL.framework"));
- visualc_only(db.add_external_lib(files_db, "glu32.lib"));
- visualc_only(db.add_external_lib(files_db, "opengl32.lib"));
- db.add_lib(fltk_forms_lib);
- demo_db.depends_on(db);
- }
-
- { Fl_Target_Prefs db(tests_db.add_with_key("name", "fullscreen"));
- db.add_source(files_db, "test/fullscreen.cxx");
- db.add_lib(fltk_lib);
- db.add_lib(fltk_gl_lib);
- xcode_only(db.add_external_lib(files_db, "/System/Library/Frameworks/OpenGL.framework"));
- xcode_only(db.add_external_lib(files_db, "/System/Library/Frameworks/AGL.framework"));
- visualc_only(db.add_external_lib(files_db, "glu32.lib"));
- visualc_only(db.add_external_lib(files_db, "opengl32.lib"));
- demo_db.depends_on(db);
- }
-
- { Fl_Target_Prefs db(tests_db.add_with_key("name", "gl_overlay"));
- db.add_source(files_db, "test/gl_overlay.cxx");
- db.add_lib(fltk_lib);
- db.add_lib(fltk_gl_lib);
- xcode_only(db.add_external_lib(files_db, "/System/Library/Frameworks/OpenGL.framework"));
- xcode_only(db.add_external_lib(files_db, "/System/Library/Frameworks/AGL.framework"));
- visualc_only(db.add_external_lib(files_db, "glu32.lib"));
- visualc_only(db.add_external_lib(files_db, "opengl32.lib"));
- demo_db.depends_on(db);
- }
-
- { Fl_Target_Prefs db(tests_db.add_with_key("name", "glpuzzle"));
- db.add_source(files_db, "test/glpuzzle.cxx");
- db.add_lib(fltk_lib);
- db.add_lib(fltk_gl_lib);
- xcode_only(db.add_external_lib(files_db, "/System/Library/Frameworks/OpenGL.framework"));
- xcode_only(db.add_external_lib(files_db, "/System/Library/Frameworks/AGL.framework"));
- visualc_only(db.add_external_lib(files_db, "glu32.lib"));
- visualc_only(db.add_external_lib(files_db, "opengl32.lib"));
- demo_db.depends_on(db);
- }
-
- { Fl_Target_Prefs db(tests_db.add_with_key("name", "hello"));
- db.add_source(files_db, "test/hello.cxx");
- db.add_lib(fltk_lib);
- demo_db.depends_on(db);
- }
-
- { Fl_Target_Prefs db(tests_db.add_with_key("name", "help"));
- db.add_source(files_db, "test/help.cxx");
- db.add_lib(fltk_lib);
- db.add_lib(fltk_images_lib);
- db.add_lib(fltk_jpeg_lib);
- db.add_lib(fltk_png_lib);
- db.add_lib(fltk_z_lib);
- demo_db.depends_on(db);
- }
-
- { Fl_Target_Prefs db(tests_db.add_with_key("name", "iconize"));
- db.add_source(files_db, "test/iconize.cxx");
- db.add_lib(fltk_lib);
- demo_db.depends_on(db);
- }
-
- { Fl_Target_Prefs db(tests_db.add_with_key("name", "image"));
- db.add_source(files_db, "test/image.cxx");
- db.add_lib(fltk_lib);
- demo_db.depends_on(db);
- }
-
- { Fl_Target_Prefs db(tests_db.add_with_key("name", "inactive"));
- db.add_fl(files_db, "test/inactive.fl");
- db.add_lib(fltk_lib);
- db.depends_on(fluid_app);
- demo_db.depends_on(db);
- }
-
- { Fl_Target_Prefs db(tests_db.add_with_key("name", "input"));
- db.add_source(files_db, "test/input.cxx");
- db.add_lib(fltk_lib);
- demo_db.depends_on(db);
- }
-
- { Fl_Target_Prefs db(tests_db.add_with_key("name", "input_choice"));
- db.add_source(files_db, "test/input_choice.cxx");
- db.add_lib(fltk_lib);
- demo_db.depends_on(db);
- }
-
- { Fl_Target_Prefs db(tests_db.add_with_key("name", "keyboard"));
- db.add_source(files_db, "test/keyboard.cxx");
- db.add_fl(files_db, "test/keyboard_ui.fl");
- db.add_lib(fltk_lib);
- db.depends_on(fluid_app);
- demo_db.depends_on(db);
- }
-
- { Fl_Target_Prefs db(tests_db.add_with_key("name", "label"));
- db.add_source(files_db, "test/label.cxx");
- db.add_lib(fltk_lib);
- db.add_lib(fltk_forms_lib);
- demo_db.depends_on(db);
- }
-
- { Fl_Target_Prefs db(tests_db.add_with_key("name", "line_style"));
- db.add_source(files_db, "test/line_style.cxx");
- db.add_lib(fltk_lib);
- demo_db.depends_on(db);
- }
-
- { Fl_Target_Prefs db(tests_db.add_with_key("name", "list_visuals"));
- db.add_source(files_db, "test/list_visuals.cxx");
- db.add_lib(fltk_lib);
- demo_db.depends_on(db);
- }
-
- { Fl_Target_Prefs db(tests_db.add_with_key("name", "mandelbrot"));
- db.add_source(files_db, "test/mandelbrot.cxx");
- db.add_fl(files_db, "test/mandelbrot_ui.fl");
- db.add_lib(fltk_lib);
- db.depends_on(fluid_app);
- demo_db.depends_on(db);
- }
-
- { Fl_Target_Prefs db(tests_db.add_with_key("name", "menubar"));
- db.add_source(files_db, "test/menubar.cxx");
- db.add_lib(fltk_lib);
- demo_db.depends_on(db);
- }
-
- { Fl_Target_Prefs db(tests_db.add_with_key("name", "message"));
- db.add_source(files_db, "test/message.cxx");
- db.add_lib(fltk_lib);
- demo_db.depends_on(db);
- }
-
- { Fl_Target_Prefs db(tests_db.add_with_key("name", "minimum"));
- db.add_source(files_db, "test/minimum.cxx");
- db.add_lib(fltk_lib);
- demo_db.depends_on(db);
- }
-
- { Fl_Target_Prefs db(tests_db.add_with_key("name", "navigation"));
- db.add_source(files_db, "test/navigation.cxx");
- db.add_lib(fltk_lib);
- demo_db.depends_on(db);
- }
-
- { Fl_Target_Prefs db(tests_db.add_with_key("name", "native-filechooser"));
- db.add_source(files_db, "test/native-filechooser.cxx");
- db.add_lib(fltk_lib);
- demo_db.depends_on(db);
- }
-
- { Fl_Target_Prefs db(tests_db.add_with_key("name", "output"));
- db.add_source(files_db, "test/output.cxx");
- db.add_lib(fltk_lib);
- db.add_lib(fltk_forms_lib);
- demo_db.depends_on(db);
- }
-
- { Fl_Target_Prefs db(tests_db.add_with_key("name", "overlay"));
- db.add_source(files_db, "test/overlay.cxx");
- db.add_lib(fltk_lib);
- demo_db.depends_on(db);
- }
-
- { Fl_Target_Prefs db(tests_db.add_with_key("name", "pack"));
- db.add_source(files_db, "test/pack.cxx");
- db.add_lib(fltk_lib);
- demo_db.depends_on(db);
- }
-
- { Fl_Target_Prefs db(tests_db.add_with_key("name", "pixmap_browser"));
- db.add_source(files_db, "test/pixmap_browser.cxx");
- db.add_lib(fltk_lib);
- db.add_lib(fltk_images_lib);
- db.add_lib(fltk_jpeg_lib);
- db.add_lib(fltk_png_lib);
- db.add_lib(fltk_z_lib);
- demo_db.depends_on(db);
- }
-
- { Fl_Target_Prefs db(tests_db.add_with_key("name", "pixmap"));
- db.add_source(files_db, "test/pixmap.cxx");
- db.add_lib(fltk_lib);
- demo_db.depends_on(db);
- }
-
- { Fl_Target_Prefs db(tests_db.add_with_key("name", "preferences"));
- db.add_fl(files_db, "test/preferences.fl");
- db.add_lib(fltk_lib);
- db.depends_on(fluid_app);
- demo_db.depends_on(db);
- }
-
- { Fl_Target_Prefs db(tests_db.add_with_key("name", "radio"));
- db.add_fl(files_db, "test/radio.fl");
- db.add_lib(fltk_lib);
- db.depends_on(fluid_app);
- demo_db.depends_on(db);
- }
-
- { Fl_Target_Prefs db(tests_db.add_with_key("name", "resizebox"));
- db.add_source(files_db, "test/resizebox.cxx");
- db.add_lib(fltk_lib);
- demo_db.depends_on(db);
- }
-
- { Fl_Target_Prefs db(tests_db.add_with_key("name", "resize"));
- db.add_fl(files_db, "test/resize.fl");
- db.add_lib(fltk_lib);
- db.depends_on(fluid_app);
- 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);
- demo_db.depends_on(db);
- }
-
- { Fl_Target_Prefs db(tests_db.add_with_key("name", "shape"));
- db.add_source(files_db, "test/shape.cxx");
- db.add_lib(fltk_lib);
- db.add_lib(fltk_gl_lib);
- xcode_only(db.add_external_lib(files_db, "/System/Library/Frameworks/OpenGL.framework"));
- xcode_only(db.add_external_lib(files_db, "/System/Library/Frameworks/AGL.framework"));
- visualc_only(db.add_external_lib(files_db, "glu32.lib"));
- visualc_only(db.add_external_lib(files_db, "opengl32.lib"));
- demo_db.depends_on(db);
- }
- { Fl_Target_Prefs db(tests_db.add_with_key("name", "subwindow"));
- db.add_source(files_db, "test/subwindow.cxx");
- db.add_lib(fltk_lib);
- demo_db.depends_on(db);
- }
-
- { Fl_Target_Prefs db(tests_db.add_with_key("name", "sudoku"));
- db.add_source(files_db, "test/sudoku.cxx");
- db.add_lib(fltk_lib);
- db.add_lib(fltk_images_lib);
- db.add_lib(fltk_jpeg_lib);
- db.add_lib(fltk_png_lib);
- db.add_lib(fltk_z_lib);
- xcode_only(db.add_external_lib(files_db, "/System/Library/Frameworks/CoreAudio.framework"));
- visualc_only(db.add_external_lib(files_db, "winmm.lib"));
- demo_db.depends_on(db);
- }
-
- { Fl_Target_Prefs db(tests_db.add_with_key("name", "symbols"));
- db.add_source(files_db, "test/symbols.cxx");
- db.add_lib(fltk_lib);
- demo_db.depends_on(db);
- }
-
- { Fl_Target_Prefs db(tests_db.add_with_key("name", "table"));
- db.add_source(files_db, "test/table.cxx");
- db.add_lib(fltk_lib);
- demo_db.depends_on(db);
- }
-
- { Fl_Target_Prefs db(tests_db.add_with_key("name", "tabs"));
- db.add_fl(files_db, "test/tabs.fl");
- db.add_lib(fltk_lib);
- db.depends_on(fluid_app);
- demo_db.depends_on(db);
- }
-
- { Fl_Target_Prefs db(tests_db.add_with_key("name", "threads"));
- db.add_source(files_db, "test/threads.cxx");
- db.add_lib(fltk_lib);
- demo_db.depends_on(db);
- }
-
- { Fl_Target_Prefs db(tests_db.add_with_key("name", "tile"));
- db.add_source(files_db, "test/tile.cxx");
- db.add_lib(fltk_lib);
- demo_db.depends_on(db);
- }
-
- { Fl_Target_Prefs db(tests_db.add_with_key("name", "tiled_image"));
- db.add_source(files_db, "test/tiled_image.cxx");
- db.add_lib(fltk_lib);
- db.add_lib(fltk_images_lib);
- db.add_lib(fltk_jpeg_lib);
- db.add_lib(fltk_png_lib);
- db.add_lib(fltk_z_lib);
- demo_db.depends_on(db);
- }
-
- { Fl_Target_Prefs db(tests_db.add_with_key("name", "tree"));
- db.add_fl(files_db, "test/tree.fl");
- db.add_lib(fltk_lib);
- db.depends_on(fluid_app);
- demo_db.depends_on(db);
- }
-
- { Fl_Target_Prefs db(tests_db.add_with_key("name", "utf8"));
- db.add_source(files_db, "test/utf8.cxx");
- db.add_lib(fltk_lib);
- demo_db.depends_on(db);
- }
-
- { Fl_Target_Prefs db(tests_db.add_with_key("name", "valuators"));
- db.add_fl(files_db, "test/valuators.fl");
- db.add_lib(fltk_lib);
- db.depends_on(fluid_app);
- demo_db.depends_on(db);
- }
-
- db->flush();
- delete db;
- return 0;
- }
- // Make this module into a plugin
- extern int exit_early;
- class Fl_FltkDB_Plugin : public Fl_Commandline_Plugin
- {
- public:
- Fl_FltkDB_Plugin() : Fl_Commandline_Plugin(name()) { }
- const char *name() { return "FltkDB.fluid.fltk.org"; }
- const char *help() { return
- " --fltkdb <filename> : create a database describing all FLTK project rules"; }
- int arg(int argc, char **argv, int &i) {
- if (argc>=i+1 && strcmp(argv[i], "--fltkdb")==0) {
- if (argc>=i+2 && argv[i+1][0]!='-') {
- fprintf(stderr, "Creating Database %s\n", argv[i+1]);
- exit_early = 1;
- create_new_database(argv[i+1]);
- i = i+2;
- return 2;
- } else {
- fprintf(stderr, "Missing argument: --fltkdb <filename>\n");
- return 1;
- }
- }
- return 0;
- }
- int test(const char *a1, const char *a2, const char *a3) {
- create_new_database(a1);
- return 0;
- }
- void show_panel() {
- }
- };
- Fl_FltkDB_Plugin FltkDB_Plugin;
- //
- // End of "$Id: ide_support.cxx 8049 2010-12-17 10:43:41Z manolo $".
- //
|