mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
I.e., remove the shell invocation and with it the need to set the shebang. Surprisingly this required some build-system modifications particularly for cmake in order to correctly set the environment.
25 lines
549 B
CMake
25 lines
549 B
CMake
SET(GUILE_DEPENDS
|
|
test-core
|
|
gncmod-app-utils
|
|
gnc-core-utils
|
|
gnc-module
|
|
gncmod-engine
|
|
gncmod-backend-xml
|
|
gncmod-backend-xml
|
|
gncmod-gnome-utils
|
|
gncmod-html
|
|
gncmod-report-system
|
|
gncmod-report-gnome
|
|
)
|
|
|
|
GNC_ADD_SCHEME_TARGETS(scm-test-load-report-stylesheets-module
|
|
"test-load-report-stylesheets-module.scm"
|
|
"gnucash/report"
|
|
"${GUILE_DEPENDS}"
|
|
FALSE
|
|
)
|
|
|
|
GNC_ADD_SCHEME_TESTS("test-load-report-stylesheets-module.scm")
|
|
|
|
SET_DIST_LIST(test_stylesheets_DIST CMakeLists.txt Makefile.am test-load-report-stylesheets-module.scm)
|