From: John L. <jr...@us...> - 2005-06-06 23:06:58
|
Update of /cvsroot/wxlua/wxLua/docs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14733/wxLua/docs Modified Files: newdirs.txt Log Message: moved files to the modules directory structure Index: newdirs.txt =================================================================== RCS file: /cvsroot/wxlua/wxLua/docs/newdirs.txt,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** newdirs.txt 1 Jun 2005 18:56:59 -0000 1.1 --- newdirs.txt 6 Jun 2005 23:06:08 -0000 1.2 *************** *** 20,27 **** wxLua/ ! art/ - all images go here, preferably in XPM format ! bin/ - output binaries go here, lua for example build/ - cmake, bakefile stuff here ! docs/ - any generic docs go here include/wxlua/ - headers from "Library" lib/ - output libs go here, wxlualib for example --- 20,27 ---- wxLua/ ! art/ - all images are here, preferably in XPM format ! bin/ - output binaries are built here, lua for example build/ - cmake, bakefile stuff here ! docs/ - generic docs are here include/wxlua/ - headers from "Library" lib/ - output libs go here, wxlualib for example *************** *** 35,43 **** utils/ - generic utils, bin2c for example ------------------------------------------------------------------------------- ! Files: ------------------------------------------------------------------------------- ! wxLua/include/wxlua/* wxlua.h wxLua.h --- 35,95 ---- utils/ - generic utils, bin2c for example + + + wxLua/ + /art/ - images are here, preferably in XPM format + /apps/ - c/c++ application code is here + /build/ - build for all applications + /wxlua/ - wxLua the main IDE for wxLua, the "Standalone" program + /embedded/ - an embedded sample + /runtime/ - a stripped down runtime for wxLua + /bin/ - output binaries are built here, lua for example + /build/ - cmake, bakefile stuff here, may call sub build dirs + /docs/ - any generic docs go here + /lib/ - output libs are built here, wxlualib for example + /samples/ - sample wxlua programs + /name/ - any multifile sample gets its own dir + /utils/ - generic utils, bin2c for example + + /bindings/ - input *.i files to make the "wrappers" + wxluawrap.lua - the main wrapper file + /wxwidgets/ - wrapper files for wxWidgets + /bit/ - the bitwise lib for lua, maybe nothing needed here + /other .i files for other stuff.../ + /wrappers/ - output of the wrapper files may be built here + /wxwidgets/ - output of bindings and wxLuaPrinting, wxLuaHtmlWin + /bit/ - the wrapper is the "src" of the bit library + /output of other .i files for other stuff.../ + + /modules/ - c/c++ code for wxlua + /build/ - to have build files for all of this + /lua/ - lua itself + /include/ + /src/ + /the rest of lua.../ + /wxlua/ - the wxlua library itself + /include/ - internal.h, interp.h, library.h, callback.h + /src/ - internal.cpp, interp.cpp, library.cpp + /wxluasocket/ - lua to cpp sockets (the current lua sockets) + /include/ - debugio.h, dserver.h, socket.h + /src/ - debugio.cpp, dserver.cpp, socket.cpp + /wxluadebug/ - mechanism for getting/showing info from lua + /include/ - debug.h, stacktree, splittree + /src/ - debug.cpp, stacktree, splittree + /wxxmlrpc/ - is is a generic lib right? so don"t prepend wxlua to it? + /include/ - ... Rays stuff + /src/ - ... Rays stuff + /debuggernub/ - this is a generic lib for xmlrpc? don"t prepend wxlua to it + /include/ - ... Rays stuff + /src/ - ... Rays stuff + /wxluadebugger/ - this depends on wxlua so prepend wxlua to it + /include/ - ... Rays stuff + /src/ - ... Rays stuff + ------------------------------------------------------------------------------- ! File name mapping from the original wxLua ------------------------------------------------------------------------------- ! These header files were in wxLua/Library wxlua.h wxLua.h *************** *** 56,60 **** staktree.h wxLuaStackTree.h ! wxLua/src/* debug.cpp wxLuaDebug.cpp --- 108,112 ---- staktree.h wxLuaStackTree.h ! These source files were in wxLua/Library debug.cpp wxLuaDebug.cpp *************** *** 71,74 **** staktree.cpp wxLuaStackTree.cpp ! dtarget.h wxLuaDebugTarget.h moved into include/wxlua from Standalone ! dtarget.cpp wxLuaDebugTarget.cpp move into src from Standalone --- 123,126 ---- staktree.cpp wxLuaStackTree.cpp ! dtarget.h wxLuaDebugTarget.h moved from wxLua/Standalone ! dtarget.cpp wxLuaDebugTarget.cpp moved from wxLua/Standalone |