···29 # request to configure the file
30 configure_file(${DOXYGEN_IN} ${DOXYGEN_OUT} @ONLY)
310000000032 # note the option ALL which allows to build the docs together with the application
33 add_custom_target(doc_doxygen ALL
34 COMMAND ${DOXYGEN_EXECUTABLE} ${DOXYGEN_OUT}
···29 # request to configure the file
30 configure_file(${DOXYGEN_IN} ${DOXYGEN_OUT} @ONLY)
3132+ # copy the schema
33+ configure_file(${CMAKE_CURRENT_SOURCE_DIR}/example_configs/config_v0.schema.json
34+ ${CMAKE_CURRENT_BINARY_DIR}/html/config_v0.schema.json
35+ @ONLY)
36+ configure_file(${CMAKE_CURRENT_SOURCE_DIR}/example_configs/config_v0.schema.json.license
37+ ${CMAKE_CURRENT_BINARY_DIR}/html/config_v0.schema.json.license
38+ @ONLY)
39+40 # note the option ALL which allows to build the docs together with the application
41 add_custom_target(doc_doxygen ALL
42 COMMAND ${DOXYGEN_EXECUTABLE} ${DOXYGEN_OUT}
+4
doc/changes/misc_features/mr.785.md
···0000
···1+---
2+- issue.82
3+---
4+Add JSON Schema for config files.