From c0883fe6962e17db993bd736d974c788719284a8 Mon Sep 17 00:00:00 2001 From: lintao <lintao51@gmail.com> Date: Tue, 22 Dec 2020 23:49:42 +0800 Subject: [PATCH] WIP: install for Generators and DetSimInterface. --- Generator/CMakeLists.txt | 5 +++++ Simulation/DetSimInterface/CMakeLists.txt | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/Generator/CMakeLists.txt b/Generator/CMakeLists.txt index b520323a..49a87c51 100644 --- a/Generator/CMakeLists.txt +++ b/Generator/CMakeLists.txt @@ -53,3 +53,8 @@ gaudi_add_module(GenAlgo EDM4HEP::edm4hep EDM4HEP::edm4hepDict ) +install(TARGETS GenAlgo + EXPORT CEPCSWTargets + RUNTIME DESTINATION "${CMAKE_INSTALL_BINDIR}" COMPONENT bin + LIBRARY DESTINATION "${CMAKE_INSTALL_LIBDIR}" COMPONENT shlib + COMPONENT dev) diff --git a/Simulation/DetSimInterface/CMakeLists.txt b/Simulation/DetSimInterface/CMakeLists.txt index ce48e904..19e1a920 100644 --- a/Simulation/DetSimInterface/CMakeLists.txt +++ b/Simulation/DetSimInterface/CMakeLists.txt @@ -10,4 +10,9 @@ gaudi_add_library(DetSimInterface LINK Gaudi::GaudiKernel ) +install(TARGETS DetSimInterface + EXPORT CEPCSWTargets + RUNTIME DESTINATION "${CMAKE_INSTALL_BINDIR}" COMPONENT bin + LIBRARY DESTINATION "${CMAKE_INSTALL_LIBDIR}" COMPONENT shlib + COMPONENT dev) -- GitLab