Wapp

How To Compile, Or Not
Login

1.0 Use As Pure Tcl - No Compilation Required

The Wapp framework is pure Tcl contained in a single file called "wapp.tcl". That, and a generic "tclsh", is all you need to run a Wapp application.

For example, when testing Wapp, the developers run the following command from the root of the source tree:

tclsh tests/test01.tcl

The test01.tcl script does a "source ../wapp.tcl" to load the Wapp framework. No special interpreter is required.

The search function of the SQLite homepage takes this one step further. The Tcl script that implements the search function embeds the wapp.tcl script when the website is built. The "wapp.tcl" is neither "source"-ed nor "package require"-ed. The wapp.tcl script is embedded into the "search" script.

2.0 Using A Special Interpreter

It is sometimes convenient to use the special "wapptclsh" interpreter to run Wapp applications. The "wapptclsh" works just like ordinary "tclsh" with the following minor differences:

To reiterate: "wapptclsh" is not required to run Wapp applications. But it is convenient. The developer of Wapp prefers using "wapptclsh" on his installations.

2.1 Compiling The Special Interpreter

To build wapptclsh, make a copy of either Makefile or Makefile.macos in the top-level directory of the source tree. Change a few settings. (This step is not hard as each Makefile is less than 20 lines long.) Then run the Makefile.

There is no configure script or other automation to help do the build. Maybe we will add one someday. But for now, the Makefile is simple enough to work stand-alone.