| 12
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 
 | # Copyright (c) 2007-2008 High Performance Computing Center Stuttgart, 
#                         University of Stuttgart.  All rights reserved.
# Copyright (c) 2008      The University of Tennessee and The University
#                         of Tennessee Research Foundation.  All rights
#                         reserved.
# $COPYRIGHT$
# 
# Additional copyrights may follow
# 
# $HEADER$
#
ADD_SUBDIRECTORY(orted)
ADD_SUBDIRECTORY(orterun)
ADD_SUBDIRECTORY(orte-clean)
ADD_SUBDIRECTORY(orte-ps)
IF(OPAL_ENABLE_FT)
  ADD_SUBDIRECTORY(orte-checkpoint)
ENDIF(OPAL_ENABLE_FT)
IF(WANT_INSTALL_HEADERS)
  CONFIGURE_FILE(${ORTE_SOURCE_DIR}/tools/wrappers/ortec++-wrapper-data.txt.in
                 ${ORTE_BINARY_DIR}/tools/wrappers/ortec++-wrapper-data.txt @ONLY)
  CONFIGURE_FILE(${ORTE_SOURCE_DIR}/tools/wrappers/ortecc-wrapper-data.txt.in
                 ${ORTE_BINARY_DIR}/tools/wrappers/ortecc-wrapper-data.txt @ONLY)
  INSTALL(FILES ${ORTE_BINARY_DIR}/tools/wrappers/ortec++-wrapper-data.txt
                DESTINATION share/openmpi)
  INSTALL(FILES ${ORTE_BINARY_DIR}/tools/wrappers/ortecc-wrapper-data.txt
                DESTINATION share/openmpi)
ENDIF(WANT_INSTALL_HEADERS)
 |