diff options
author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2024-08-28 13:52:12 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-28 13:52:12 -0400 |
commit | b625cf2045a73b9477abe3cc25f38bf34c8c483b (patch) | |
tree | abc1f6dfaef579b2248f81d176c65aa789f18b9e /CMakeLists.txt | |
parent | f22a121c6667e3139f8695ff1dbcc0b33039f330 (diff) | |
download | stasis-b625cf2045a73b9477abe3cc25f38bf34c8c483b.tar.gz |
Pandoc improvements (#37)
* Tweak pandoc command and add a style sheet
* Only search for platform sub-string when valid
* Add get_pandoc_version
* Add version checking and set options accordingly
* Add support for globals.sysconfdir
* Add missing brace
* Remove options that are created dynamically
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index f358b22..abb700c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -35,5 +35,6 @@ endif() set(SYSCONFDIR "${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_SYSCONFDIR}") configure_file(${CMAKE_CURRENT_SOURCE_DIR}/include/config.h.in ${CMAKE_CURRENT_BINARY_DIR}/include/config.h @ONLY) +install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/stasis_pandoc.css DESTINATION ${CMAKE_INSTALL_SYSCONFDIR}/stasis) install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/stasis.ini DESTINATION ${CMAKE_INSTALL_SYSCONFDIR}/stasis) install(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/mission DESTINATION ${CMAKE_INSTALL_SYSCONFDIR}/stasis) |