gnucash maint: Multiple changes pushed

Geert Janssens gjanssens at code.gnucash.org
Sun Sep 3 06:14:09 EDT 2017


Updated	 via  https://github.com/Gnucash/gnucash/commit/98e8e4c7 (commit)
	 via  https://github.com/Gnucash/gnucash/commit/66440cb2 (commit)
	from  https://github.com/Gnucash/gnucash/commit/28668ec5 (commit)



commit 98e8e4c767326c19ea678ddf804a0651396b0c17
Author: Geert Janssens <geert at kobaltwit.be>
Date:   Sun Sep 3 12:05:00 2017 +0200

    Only build aqbanking when requested

diff --git a/src/import-export/CMakeLists.txt b/src/import-export/CMakeLists.txt
index 0ded393..7991a92 100644
--- a/src/import-export/CMakeLists.txt
+++ b/src/import-export/CMakeLists.txt
@@ -3,7 +3,9 @@
 ADD_SUBDIRECTORY(test)
 
 # ############################################################
-ADD_SUBDIRECTORY(aqb)
+if (WITH_AQBANKING)
+  ADD_SUBDIRECTORY(aqb)
+endif()
 ADD_SUBDIRECTORY(csv-exp)
 ADD_SUBDIRECTORY(csv-imp)
 ADD_SUBDIRECTORY(gschemas)

commit 66440cb203b1af7b2e484ee71448653b8410b173
Author: Sumit Bhardwaj <bhardwajs at users.noreply.github.com>
Date:   Sat Sep 2 13:53:54 2017 -0700

    Added WITH_OFX fix to CMakeLists in gnucash/import-export/ofx

diff --git a/src/import-export/CMakeLists.txt b/src/import-export/CMakeLists.txt
index 7bb6ba4..0ded393 100644
--- a/src/import-export/CMakeLists.txt
+++ b/src/import-export/CMakeLists.txt
@@ -8,7 +8,9 @@ ADD_SUBDIRECTORY(csv-exp)
 ADD_SUBDIRECTORY(csv-imp)
 ADD_SUBDIRECTORY(gschemas)
 ADD_SUBDIRECTORY(log-replay)
-ADD_SUBDIRECTORY(ofx)
+if (WITH_OFX)
+  ADD_SUBDIRECTORY(ofx)
+endif()
 ADD_SUBDIRECTORY(qif)
 ADD_SUBDIRECTORY(qif-imp)
 



Summary of changes:
 src/import-export/CMakeLists.txt | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)



More information about the gnucash-changes mailing list