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<ispd>" -*-
|
2010-03-09 09:27:00 -06:00
|
|
|
|
2010-07-15 09:31:37 -05:00
|
|
|
project(ISPD)
|
|
|
|
|
|
|
|
cmake_minimum_required(VERSION 2.4.0)
|
2010-04-28 16:54:56 -05:00
|
|
|
|
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
|
|
|
list(INSERT CMAKE_MODULE_PATH 0 "$ENV{CORIOLIS_TOP}/share/cmake/Modules/")
|
2010-07-15 09:31:37 -05:00
|
|
|
find_package(Bootstrap REQUIRED)
|
|
|
|
setup_project_paths(CORIOLIS)
|
|
|
|
|
|
|
|
set_cmake_policies()
|
|
|
|
set_lib_link_mode()
|
2010-08-25 06:42:44 -05:00
|
|
|
#setup_apple()
|
2010-07-15 09:31:37 -05:00
|
|
|
setup_boost(program_options filesystem python regex)
|
|
|
|
|
|
|
|
find_package(LibXml2 REQUIRED)
|
|
|
|
set(QT_USE_QTXML "true")
|
|
|
|
find_package(Qt4 REQUIRED)
|
|
|
|
find_package(PythonLibs REQUIRED)
|
|
|
|
find_package(PythonSitePackages REQUIRED)
|
|
|
|
find_package(VLSISAPD REQUIRED)
|
|
|
|
find_package(HURRICANE REQUIRED)
|
|
|
|
find_package(CORIOLIS REQUIRED)
|
|
|
|
find_package(KNIK REQUIRED)
|
|
|
|
find_package(LEFDEF REQUIRED)
|
2010-08-25 06:42:44 -05:00
|
|
|
#find_package(KATABATIC REQUIRED)
|
|
|
|
#find_package(KITE REQUIRED)
|
|
|
|
#find_package(EQUINOX REQUIRED)
|
|
|
|
#find_package(SOLSTICE REQUIRED)
|
2010-07-15 09:31:37 -05:00
|
|
|
|
|
|
|
add_subdirectory(src)
|