Cleanup after SVN importation, <ccb> builder script adaptation.
Project hierarchy reorganisation:
* With svn, we were doing a tool by tool checkout, suppressing the
whole repository hierarchy level.
* The tools were also grouped, inside one repository, into multiple
projects (<bootstrap>, <vlsisapd>, <coriolis>).
* We do not want to split up each tool into a separate repository,
given their tight integration (except for vlsisapd).
* We choose to simplify, and consider all tools in a svn repository
one project. Due to the way Git clone repositories, the directory
containing the project is now to be seen under "src/".
CMake modifications:
* Now that the <vlsisapd> and <bootstrap> projects are merged into
coriolis, modificate the top CMakeLists.txt of each tool to uses
only Coriolis (and bootstrap hard wired).
CCB compile script modifications:
* Uses the new source tree hierarchy, with the project directory
inserted.
* Remove (comment) all parts relateds to svn managment.
* Git is sufficiently simple so that we do not want to integrate
command shortcut into the script.
SVN cleanup:
* Remove the obsolete <chamsin> tool, that has become the full fledged
<chams> project long time ago.
2014-02-26 11:24:41 -06:00
|
|
|
# -*- mode: CMAKE explicit-buffer-name: "CMakeLists.txt<vlsisapd>" -*-
|
2009-12-11 06:48:37 -06:00
|
|
|
|
2010-07-15 09:09:17 -05:00
|
|
|
project(VLSISAPD)
|
2009-12-11 06:48:37 -06:00
|
|
|
|
2010-07-15 09:09:17 -05:00
|
|
|
cmake_minimum_required(VERSION 2.4.0)
|
2010-07-13 06:14:03 -05:00
|
|
|
|
2014-03-15 04:47:37 -05:00
|
|
|
list(INSERT CMAKE_MODULE_PATH 0 "${DESTDIR}$ENV{CORIOLIS_TOP}/share/cmake/Modules/")
|
2010-07-15 09:09:17 -05:00
|
|
|
find_package(Bootstrap REQUIRED)
|
|
|
|
list(INSERT CMAKE_MODULE_PATH 0 "${VLSISAPD_SOURCE_DIR}/cmake_modules/")
|
Cleanup after SVN importation, <ccb> builder script adaptation.
Project hierarchy reorganisation:
* With svn, we were doing a tool by tool checkout, suppressing the
whole repository hierarchy level.
* The tools were also grouped, inside one repository, into multiple
projects (<bootstrap>, <vlsisapd>, <coriolis>).
* We do not want to split up each tool into a separate repository,
given their tight integration (except for vlsisapd).
* We choose to simplify, and consider all tools in a svn repository
one project. Due to the way Git clone repositories, the directory
containing the project is now to be seen under "src/".
CMake modifications:
* Now that the <vlsisapd> and <bootstrap> projects are merged into
coriolis, modificate the top CMakeLists.txt of each tool to uses
only Coriolis (and bootstrap hard wired).
CCB compile script modifications:
* Uses the new source tree hierarchy, with the project directory
inserted.
* Remove (comment) all parts relateds to svn managment.
* Git is sufficiently simple so that we do not want to integrate
command shortcut into the script.
SVN cleanup:
* Remove the obsolete <chamsin> tool, that has become the full fledged
<chams> project long time ago.
2014-02-26 11:24:41 -06:00
|
|
|
print_cmake_module_path()
|
2010-07-13 06:14:03 -05:00
|
|
|
|
2014-03-15 04:47:37 -05:00
|
|
|
message(STATUS "Boost_NO_SYSTEM_PATHS: ${Boost_NO_SYSTEM_PATHS}")
|
2011-02-02 04:43:02 -06:00
|
|
|
set_cmake_policies()
|
2013-04-21 10:35:11 -05:00
|
|
|
setup_boost(program_options python regex)
|
2010-07-13 06:14:03 -05:00
|
|
|
|
2010-07-15 09:09:17 -05:00
|
|
|
find_package(LibXml2 REQUIRED)
|
|
|
|
find_package(PythonSitePackages REQUIRED)
|
|
|
|
find_package(PythonLibs REQUIRED)
|
2010-10-08 06:22:59 -05:00
|
|
|
find_package(BISON REQUIRED)
|
|
|
|
find_package(FLEX REQUIRED)
|
2010-07-15 09:09:17 -05:00
|
|
|
find_package(Doxygen)
|
2010-07-13 06:14:03 -05:00
|
|
|
|
2010-07-15 09:09:17 -05:00
|
|
|
add_subdirectory(src)
|
|
|
|
add_subdirectory(cmake_modules)
|
2009-12-11 06:48:37 -06:00
|
|
|
|
2010-07-15 09:09:17 -05:00
|
|
|
if(BUILD_DOC AND DOXYGEN_FOUND)
|
|
|
|
add_subdirectory(doc)
|
|
|
|
add_subdirectory(examples)
|
|
|
|
endif(BUILD_DOC AND DOXYGEN_FOUND)
|