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} )