mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
This code originally from a large patch from Rob Browning. git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@1647 57a11ea4-9604-0410-9ed3-97b8803252fd
15 lines
394 B
Plaintext
15 lines
394 B
Plaintext
# You can debug gnucash by running gdb as "gdb -x gnucash.gdb-cmds"
|
|
# and then executing "run-gnucash somefile".
|
|
|
|
file gnucash.bin
|
|
|
|
define run-gnucash
|
|
set args --debug \
|
|
--startup-dir ./share/scm/startup \
|
|
--share-dir ./share \
|
|
--config-dir ./etc \
|
|
--load-path \
|
|
"(\"(./share/scm)\")" --doc-path "(\"(./Docs)\"\"(./Reports)\")" $arg0
|
|
run
|
|
end
|