~ubuntu-branches/ubuntu/vivid/emscripten/vivid

« back to all changes in this revision

Viewing changes to tests/openjpeg/doc/CMakeLists.txt

  • Committer: Package Import Robot
  • Author(s): Sylvestre Ledru
  • Date: 2013-05-02 13:11:51 UTC
  • Revision ID: package-import@ubuntu.com-20130502131151-q8dvteqr1ef2x7xz
Tags: upstream-1.4.1~20130504~adb56cb
ImportĀ upstreamĀ versionĀ 1.4.1~20130504~adb56cb

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
FIND_PACKAGE(Doxygen)
 
2
#
 
3
IF(DOXYGEN_EXECUTABLE)
 
4
# The Doxyfile.dox is poorly defined and produce output
 
5
# in the source dir
 
6
ADD_CUSTOM_TARGET(doxygen
 
7
# By default doxygen target is added to the 'all' target. Project is small
 
8
# thus running doxygen is not too time consuming
 
9
  ALL
 
10
  ${DOXYGEN}
 
11
  ${CMAKE_CURRENT_SOURCE_DIR}/Doxyfile.dox
 
12
  WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
 
13
)
 
14
ENDIF(DOXYGEN_EXECUTABLE)
 
15