git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@2726 331e1502-861f-0410-8da2-ba01fb791d7f
23 lines
755 B
CMake
23 lines
755 B
CMake
######################################################################################
|
|
### 0) Include dependencies
|
|
######################################################################################
|
|
|
|
find_package(LibXml2 REQUIRED)
|
|
|
|
######################################################################################
|
|
### 0) Include subdirectories
|
|
######################################################################################
|
|
|
|
add_subdirectory(doc)
|
|
add_subdirectory(src)
|
|
|
|
if(ENABLE_CMAKE_TESTING)
|
|
add_subdirectory(test)
|
|
endif(ENABLE_CMAKE_TESTING)
|
|
|
|
if(ENABLE_CMAKE_EXAMPLE)
|
|
if(${CMAKE_VERBOSE_MAKEFILE})
|
|
message("PEO Examples :")
|
|
endif(${CMAKE_VERBOSE_MAKEFILE})
|
|
add_subdirectory(tutorial)
|
|
endif(ENABLE_CMAKE_EXAMPLE)
|