~ubuntu-branches/debian/sid/simpleitk/sid

« back to all changes in this revision

Viewing changes to Documentation/Tutorials/Medium/CMakeLists.txt

  • Committer: Package Import Robot
  • Author(s): Ghislain Antony Vaillant
  • Date: 2017-11-02 08:49:18 UTC
  • Revision ID: package-import@ubuntu.com-20171102084918-7hs09ih668xq87ej
Tags: upstream-1.0.1
ImportĀ upstreamĀ versionĀ 1.0.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
project(SimpleITKMediumTutorial)
 
2
 
 
3
#
 
4
# This adds a custom target that generates the output document
 
5
# This target depends on the list of copied files created
 
6
# with the custom command above and the Plots target.
 
7
#
 
8
add_custom_target(MediumTutorial ALL
 
9
   COMMAND ${PDFLATEX_COMPILER}
 
10
        ${SimpleITKMediumTutorial_SOURCE_DIR}/SimpleITKMediumTutorial.tex
 
11
        -output-directory ${SimpleITKMediumTutorial_BINARY_DIR}
 
12
   COMMAND ${PDFLATEX_COMPILER}
 
13
        ${SimpleITKMediumTutorial_SOURCE_DIR}/SimpleITKMediumTutorial.tex
 
14
        -output-directory ${SimpleITKMediumTutorial_BINARY_DIR}
 
15
   DEPENDS ${COPY_RESULTS} ${REPORT_ELEMENTS}
 
16
   WORKING_DIRECTORY ${SimpleITKMediumTutorial_BINARY_DIR}
 
17
   )
 
18