mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
- move test modules into a subdirectory on Windows as well - move the futuremod module into its own subdirectory to avoid its load warnings each time gnc_module_init is called That also tends to happen when building guile modules. - remove the log handlers filtering out the futuremodsys warnings They didn't match the actual warning signature anyway and they're no longer emitted during testing
12 lines
168 B
Scheme
Executable File
12 lines
168 B
Scheme
Executable File
(use-modules (gnucash gnc-module))
|
|
|
|
(gnc:module-system-init)
|
|
(gnc:module-load "gnucash/baz" 0)
|
|
|
|
(baz-hello)
|
|
(foo-hello)
|
|
(baz:scheme-hello)
|
|
(foo:scheme-hello)
|
|
|
|
(exit 0)
|