18 lines
507 B
CMake
18 lines
507 B
CMake
|
|
################################################################################
|
|
##### Vtk/HEP/Geant - VTK wrappers for HEP Geant objects #######################
|
|
################################################################################
|
|
|
|
set(HEP_GEANT_SOURCES
|
|
${CMAKE_CURRENT_SOURCE_DIR}/vtkGeantEvent.cpp
|
|
PARENT_SCOPE)
|
|
|
|
set(HEP_GEANT_HEADERS
|
|
${CMAKE_CURRENT_SOURCE_DIR}/vtkGeantEvent.h
|
|
PARENT_SCOPE)
|
|
|
|
if(BUILD_TESTING)
|
|
include(uLibTargetMacros)
|
|
add_subdirectory(testing)
|
|
endif()
|