4490fdbd34
Correctly check the dependencies of MSYS env. Set up configure include and lib path for building the package. update a few more CMake scripts. This commit was SVN r24663.
28 строки
919 B
CMake
28 строки
919 B
CMake
# Copyright (c) 2007-2010 High Performance Computing Center Stuttgart,
|
|
# University of Stuttgart. All rights reserved.
|
|
# $COPYRIGHT$
|
|
#
|
|
# Additional copyrights may follow
|
|
#
|
|
# $HEADER$
|
|
#
|
|
|
|
FILE(GLOB_RECURSE OPAL_RESTART_SOURCE_FILES "*.h" "*.c" "*.cc" "*.cpp")
|
|
|
|
ADD_EXECUTABLE (opal-restart ${OPAL_RESTART_SOURCE_FILES})
|
|
|
|
ADD_DEPENDENCIES(opal-restart libopen-pal)
|
|
IF(BUILD_SHARED_LIBS)
|
|
SET_TARGET_PROPERTIES(opal-restart PROPERTIES
|
|
COMPILE_FLAGS "${OMPI_C_DEF_PRE}_USRDLL ${OMPI_C_DEF_PRE}OPAL_IMPORTS ${OMPI_C_DEF_PRE}OMPI_IMPORTS ${OMPI_C_DEF_PRE}ORTE_IMPORTS ${OMPI_CXX_LAN_FLAG}")
|
|
ENDIF(BUILD_SHARED_LIBS)
|
|
|
|
SET_TARGET_PROPERTIES(opal-restart PROPERTIES
|
|
DEBUG_POSTFIX "${OMPI_EXE_DEBUG_POSTFIX}")
|
|
|
|
TARGET_LINK_LIBRARIES (opal-restart libopen-pal Ws2_32.lib shlwapi.lib)
|
|
|
|
INSTALL(TARGETS opal-restart
|
|
DESTINATION bin)
|
|
INSTALL(FILES help-opal-restart.txt DESTINATION share/openmpi)
|