gnucash/libgnucash/gnc-module
Geert Janssens d35eabd636 Prevent autocompilation of the guile test scripts
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.
2019-05-25 10:09:12 +02:00
..
doc Restructure the src directory 2017-08-10 18:45:00 +02:00
example Lowercase cmake commands 2018-05-03 23:18:15 +02:00
test Prevent autocompilation of the guile test scripts 2019-05-25 10:09:12 +02:00
CMakeLists.txt Lowercase cmake commands 2018-05-03 23:18:15 +02:00
gnc-module-api.h Restructure the src directory 2017-08-10 18:45:00 +02:00
gnc-module.c Reduce warning about failing to dlopen a module to debug. 2018-02-19 12:27:59 -08:00
gnc-module.h Restructure the src directory 2017-08-10 18:45:00 +02:00
gnc-module.i Restructure the src directory 2017-08-10 18:45:00 +02:00
gnc-module.scm Drop guile 1.8 support 2017-12-20 14:55:40 +01:00
README Restructure the src directory 2017-08-10 18:45:00 +02:00

This is gnc-module, a plugin/module system for gnucash and related
software.  The documentation currently consists of 'doc/design.txt'.

Bill Gribble