add a cmakeLists for the book (#374)

* add a cmakeLists for the book to add a project in visual studio so the book can be edited with the code

* remove trailing whitespace

* remove restrictions on MSVC and use a globbing expression in finding the files.  Also add a check to make sure book directory exists which seems to be important on appveyor

* apparently doxygen was updated and the old download script no longer worked

* try a different url for the older download

* use github source tar
This commit is contained in:
Philip Top
2019-12-28 14:59:47 -08:00
committed by Henry Schreiner
parent c72057d877
commit 73950eb6a2
3 changed files with 16 additions and 1 deletions

View File

@@ -93,6 +93,10 @@ if(CMAKE_PROJECT_NAME STREQUAL PROJECT_NAME)
endif()
endif()
if (EXISTS book)
add_subdirectory(book)
endif()
if(NOT CMAKE_VERSION VERSION_LESS 3.9)
find_package(Doxygen)
if(Doxygen_FOUND)