mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
There were several issues: - we store the compiled test*.go files in a tests subdirectory, but this is not on the GUILE_LOAD_COMPILED_PATH. Added this directory to the path. - guile was looking for 'script.scm.go' while we create 'script.go'. This is due to how we invoke the scripts: guile -l path-to-script.scm -c (something) we can replace this with -l path-to-script (without extension) as -l won't add the extension. So I've rewrittin the test command to invoke (load-from-path). - the test modules foo.scm, bar.scm and baz.scm should go in tests/gnucash as they are defined as modules (gnucash foo), (gnucash bar) and (gnucash baz) respectively. - find html.scm/go on the load path instead of using a relative path. |
||
---|---|---|
.. | ||
doc | ||
example | ||
test | ||
CMakeLists.txt | ||
gnc-module-api.h | ||
gnc-module.c | ||
gnc-module.h | ||
gnc-module.i | ||
gnc-module.scm | ||
README |
This is gnc-module, a plugin/module system for gnucash and related software. The documentation currently consists of 'doc/design.txt'. Bill Gribble