From d922763a0f582f90683386655272e5c45f83b1da Mon Sep 17 00:00:00 2001
From: Dan Ciubotaru <dan.andrei.ciubotaru@cern.ch>
Date: Tue, 9 Aug 2016 11:45:45 +0300
Subject: [PATCH] Add PUPPI to CMakeLists.txt
---
CMakeLists.txt | 1 +
external/CMakeLists.txt | 1 +
external/PUPPI/CMakeLists.txt | 5 +++++
3 files changed, 7 insertions(+)
create mode 100644 external/PUPPI/CMakeLists.txt
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 8834dd9..5429d0f 100644
a
|
b
|
add_library(Delphes SHARED
|
40 | 40 | $<TARGET_OBJECTS:fastjet> |
41 | 41 | $<TARGET_OBJECTS:tcl> |
42 | 42 | $<TARGET_OBJECTS:Hector> |
| 43 | $<TARGET_OBJECTS:PUPPI> |
43 | 44 | ) |
44 | 45 | |
45 | 46 | target_link_Libraries(Delphes ${ROOT_LIBRARIES} ${ROOT_COMPONENT_LIBRARIES}) |
diff --git a/external/CMakeLists.txt b/external/CMakeLists.txt
index 2679786..df34d20 100644
a
|
b
|
add_subdirectory(fastjet)
|
2 | 2 | add_subdirectory(ExRootAnalysis) |
3 | 3 | add_subdirectory(Hector) |
4 | 4 | add_subdirectory(tcl) |
| 5 | add_subdirectory(PUPPI) |
diff --git a/external/PUPPI/CMakeLists.txt b/external/PUPPI/CMakeLists.txt
new file mode 100644
index 0000000..beb4ede
-
|
+
|
|
| 1 | include_directories(${CMAKE_SOURCE_DIR}/external) |
| 2 | |
| 3 | file(GLOB sources *.cc) |
| 4 | |
| 5 | add_library(PUPPI OBJECT ${sources}) |