Browse Source

fix doc list

ctrauma 10 years ago
parent
commit
e0d021ea3e
1 changed files with 7 additions and 0 deletions
  1. 7 0
      Build/CMake/Modules/AtomicDocList.cmake

+ 7 - 0
Build/CMake/Modules/AtomicDocList.cmake

@@ -0,0 +1,7 @@
+# create target to generate docs with clang based doc tool
+find_program(CLDOC cldoc)
+if(CLDOC)
+   add_custom_target(AtomicEngineDocs
+    DEPENDS AtomicEditorDocs AtomicDocs
+    )
+endif()