Modifications on eompi/src/CMakeLists.txt file (module paths).

This commit is contained in:
Adèle Harrissart 2014-06-17 14:53:23 +02:00
commit b6ec15c911

View file

@ -9,7 +9,7 @@ include_directories(${CMAKE_CURRENT_SOURCE_DIR})
### 2) Define the eompi target ### 2) Define the eompi target
###################################################################################### ######################################################################################
set(EOMPI_LIB_OUTPUT_PATH ${EO_BIN_DIR}/lib) set(EOMPI_LIB_OUTPUT_PATH ${EOMPI_BIN_DIR}/lib)
set(LIBRARY_OUTPUT_PATH ${EOMPI_LIB_OUTPUT_PATH}) set(LIBRARY_OUTPUT_PATH ${EOMPI_LIB_OUTPUT_PATH})
set(EOMPI_SOURCES set(EOMPI_SOURCES
@ -23,7 +23,7 @@ add_library(eompi STATIC ${EOMPI_SOURCES})
install(TARGETS eompi ARCHIVE DESTINATION ${LIB} COMPONENT libraries) install(TARGETS eompi ARCHIVE DESTINATION ${LIB} COMPONENT libraries)
file(GLOB HDRS *.h) file(GLOB HDRS *.h)
install(FILES ${HDRS} DESTINATION include${INSTALL_SUB_DIR}/eo/mpi COMPONENT headers) install(FILES ${HDRS} DESTINATION include${INSTALL_SUB_DIR}/eompi COMPONENT headers)
###################################################################################### ######################################################################################
### 3) Optionnal ### 3) Optionnal