mirror of
https://github.com/CLIUtils/CLI11.git
synced 2025-05-01 13:13:53 +00:00
* 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
11 lines
201 B
CMake
11 lines
201 B
CMake
|
|
set(
|
|
book_sources
|
|
README.md
|
|
SUMMARY.md
|
|
)
|
|
|
|
file(GLOB book_chapters RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} chapters/*.md)
|
|
add_custom_target(cli_book SOURCES ${book_sources} ${book_chapters})
|
|
|