~paulliu/unity/dash_people_test

« back to all changes in this revision

Viewing changes to include/unity/api/CMakeLists.txt

  • Committer: Tarmac
  • Author(s): Michi Henning
  • Date: 2013-04-22 15:11:50 UTC
  • mfrom: (602.3.8 doxygen)
  • Revision ID: tarmac-20130422151150-1c5czu1scyqtazu0
generate API docs with doxygen

This change adds support for generating API docs with doxygen. "make doc" generates the documentation. The HTML output is placed into buiilddir/doc/libunity-api.

Approved by Jussi Pakkanen, PS Jenkins bot.

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
#
18
18
 
19
19
file(GLOB headers "${CMAKE_CURRENT_SOURCE_DIR}/*.h")
 
20
file(GLOB internal_headers "${CMAKE_CURRENT_SOURCE_DIR}/internal/*.h")
20
21
 
21
22
#
22
23
# Generated headers
25
26
set(headers ${headers} ${CMAKE_CURRENT_BINARY_DIR}/Version.h)
26
27
 
27
28
install(FILES ${headers} DESTINATION ${HDR_INSTALL_DIR}/unity/api)
 
29
 
 
30
set(UNITY_API_LIB_HDRS ${UNITY_API_LIB_HDRS} ${headers} ${internal_headers} PARENT_SCOPE)