more
This commit is contained in:
parent
495ea995ea
commit
e08c45ec34
|
@ -74,4 +74,10 @@ target_include_directories(api INTERFACE "include/client")
|
||||||
# src
|
# src
|
||||||
add_subdirectory(source)
|
add_subdirectory(source)
|
||||||
|
|
||||||
|
# docs
|
||||||
|
if(${BUILD_DOCS})
|
||||||
|
execute_process(COMMAND doxygen ${PROJECT_SOURCE_DIR}/docs/Doxyfile)
|
||||||
|
endif(${BUILD_DOCS})
|
||||||
|
|
||||||
|
|
||||||
# tests (TODO)
|
# tests (TODO)
|
||||||
|
|
|
@ -36,3 +36,9 @@ option(
|
||||||
"If build dependency tests"
|
"If build dependency tests"
|
||||||
OFF
|
OFF
|
||||||
)
|
)
|
||||||
|
|
||||||
|
option(
|
||||||
|
BUILD_DOCS
|
||||||
|
"If use doxygen build documents"
|
||||||
|
ON
|
||||||
|
)
|
Loading…
Reference in New Issue