From 541a48531e32eb9ccf2b92c21c1f2397675ff292 Mon Sep 17 00:00:00 2001 From: Jean-Paul Chaput Date: Fri, 18 Jun 2010 14:01:50 +0000 Subject: [PATCH] * ./crlcore: - In /etc, supplies a default XML configuration file for all tools: tools.configuration.xml. --- crlcore/etc/CMakeLists.txt | 1 + crlcore/etc/tools.configuration.xml | 125 ++++++++++++++++++++++++++++ crlcore/src/ccore/CMakeLists.txt | 2 + 3 files changed, 128 insertions(+) create mode 100644 crlcore/etc/tools.configuration.xml diff --git a/crlcore/etc/CMakeLists.txt b/crlcore/etc/CMakeLists.txt index dd862562..9610a84d 100644 --- a/crlcore/etc/CMakeLists.txt +++ b/crlcore/etc/CMakeLists.txt @@ -5,3 +5,4 @@ install ( FILES technology.freePDK45.s2r.xml DESTINATION ${SYS_CONF_DIR}/coriolis2 ) install ( FILES technology.fake.s2r.xml DESTINATION ${SYS_CONF_DIR}/coriolis2 ) install ( FILES display.xml DESTINATION ${SYS_CONF_DIR}/coriolis2 ) + install ( FILES tools.configuration.xml DESTINATION ${SYS_CONF_DIR}/coriolis2 ) diff --git a/crlcore/etc/tools.configuration.xml b/crlcore/etc/tools.configuration.xml new file mode 100644 index 00000000..5c319d0a --- /dev/null +++ b/crlcore/etc/tools.configuration.xml @@ -0,0 +1,125 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/crlcore/src/ccore/CMakeLists.txt b/crlcore/src/ccore/CMakeLists.txt index 1ee723fd..1e71fabe 100644 --- a/crlcore/src/ccore/CMakeLists.txt +++ b/crlcore/src/ccore/CMakeLists.txt @@ -26,6 +26,7 @@ ${CRLCORE_SOURCE_DIR}/src/ccore/toolbox ${HURRICANE_INCLUDE_DIR} ${CIF_INCLUDE_DIR} + ${CONFIGURATION_INCLUDE_DIR} ) add_definitions ( -DCORIOLIS_TOP="${CORIOLIS_TOP}" @@ -249,5 +250,6 @@ ${OA_LIBRARIES} ${AGDS_LIBRARY} ${CIF_LIBRARY} + ${CONFIGURATION_LIBRARY} ) install ( TARGETS crlcore DESTINATION lib${LIB_SUFFIX} )