git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@2726 331e1502-861f-0410-8da2-ba01fb791d7f
24 lines
922 B
CMake
24 lines
922 B
CMake
######################################################################################
|
|
### 0) Where must cmake go now ?
|
|
######################################################################################
|
|
|
|
add_subdirectory(core)
|
|
add_subdirectory(rmc)
|
|
|
|
######################################################################################
|
|
### 3) Look for headers
|
|
######################################################################################
|
|
|
|
file(GLOB HDRS peo)
|
|
install(FILES ${HDRS} DESTINATION local/include${INSTALL_SUB_DIR}/peo COMPONENT headers)
|
|
|
|
######################################################################################
|
|
### 2) Install directories
|
|
######################################################################################
|
|
|
|
install(DIRECTORY core rmc
|
|
DESTINATION local/include${INSTALL_SUB_DIR}/peo
|
|
COMPONENT headers
|
|
FILES_MATCHING PATTERN "*.h"
|
|
)
|
|
|