gnucash unstable: Don't build design docs on Windows.

John Ralls jralls at code.gnucash.org
Sun Oct 22 14:52:00 EDT 2017


Updated	 via  https://github.com/Gnucash/gnucash/commit/70a37a24 (commit)
	from  https://github.com/Gnucash/gnucash/commit/7b44e280 (commit)



commit 70a37a24ae013023a96e63625c30a0432ebcd136
Author: John Ralls <jralls at ceridwen.us>
Date:   Sun Oct 22 11:51:26 2017 -0700

    Don't build design docs on Windows.
    
    To avoid requiring texinfo.

diff --git a/libgnucash/doc/CMakeLists.txt b/libgnucash/doc/CMakeLists.txt
index 19ffc16..8f6e5a1 100644
--- a/libgnucash/doc/CMakeLists.txt
+++ b/libgnucash/doc/CMakeLists.txt
@@ -1,4 +1,6 @@
-ADD_SUBDIRECTORY(design)
+if (!WIN32)
+  ADD_SUBDIRECTORY(design)
+endif()
 ADD_SUBDIRECTORY(xml)
 
 SET(doc_FILES



Summary of changes:
 libgnucash/doc/CMakeLists.txt | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)



More information about the gnucash-changes mailing list