Skip to content
Snippets Groups Projects
Unverified Commit 8dd324de authored by Guilherme Amadio's avatar Guilherme Amadio
Browse files

core/cont: do not use file globbing

parent 36c39f92
No related branches found
No related tags found
No related merge requests found
......@@ -2,13 +2,70 @@
# CMakeLists.txt file for building ROOT core/cont package
############################################################################
ROOT_ADD_TEST_SUBDIRECTORY(test)
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/res ${CMAKE_CURRENT_SOURCE_DIR}/../foundation/res)
set(Cont_dict_headers
ROOT/TSeq.hxx
TArrayC.h
TArrayD.h
TArrayF.h
TArray.h
TArrayI.h
TArrayL64.h
TArrayL.h
TArrayS.h
TBits.h
TBtree.h
TClassTable.h
TClonesArray.h
TCollection.h
TCollectionProxyInfo.h
TExMap.h
THashList.h
THashTable.h
TIterator.h
TList.h
TMap.h
TObjArray.h
TObjectTable.h
TOrdCollection.h
TRefArray.h
TRefTable.h
TSeqCollection.h
TSortedList.h
TVirtualCollectionProxy.h
PARENT_SCOPE
)
ROOT_GLOB_HEADERS(headers ${CMAKE_CURRENT_SOURCE_DIR}/inc/*.h ${CMAKE_CURRENT_SOURCE_DIR}/inc/ROOT/*.hxx)
set(Cont_dict_headers ${headers} PARENT_SCOPE)
ROOT_OBJECT_LIBRARY(Cont
src/TArrayC.cxx
src/TArray.cxx
src/TArrayD.cxx
src/TArrayF.cxx
src/TArrayI.cxx
src/TArrayL64.cxx
src/TArrayL.cxx
src/TArrayS.cxx
src/TBits.cxx
src/TBtree.cxx
src/TClassTable.cxx
src/TClonesArray.cxx
src/TCollection.cxx
src/TExMap.cxx
src/THashList.cxx
src/THashTable.cxx
src/TIterator.cxx
src/TList.cxx
src/TMap.cxx
src/TObjArray.cxx
src/TObjectTable.cxx
src/TOrdCollection.cxx
src/TRefArray.cxx
src/TRefTable.cxx
src/TSeqCollection.cxx
src/TSortedList.cxx
)
ROOT_OBJECT_LIBRARY(Cont *.cxx)
target_include_directories(Cont PRIVATE res ../foundation/res)
ROOT_INSTALL_HEADERS()
ROOT_ADD_TEST_SUBDIRECTORY(test)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment