Newer
Older
############################################################################
# CMakeLists.txt file for building ROOT core/thread package
############################################################################
if(WIN32)
set(PLATFORM_FILTER FILTER "Posix")
set(PLATFORM_HEADERS
TWin32Condition.h
TWin32Mutex.h
TWin32Thread.h
TWin32ThreadFactory.h
)
set(PLATFORM_FILTER FILTER "Win32")
set(PLATFORM_HEADERS
TPosixCondition.h
TPosixMutex.h
TPosixThread.h
TPosixThreadFactory.h
PosixThreadInc.h
)
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
ROOT_STANDARD_LIBRARY_PACKAGE(Thread
HEADERS
${PLATFORM_HEADERS}
TAtomicCount.h
TCondition.h
TConditionImp.h
ThreadLocalStorage.h
TMutex.h
TMutexImp.h
TRWLock.h
TSemaphore.h
TThreadFactory.h
TThread.h
TThreadImp.h
TThreadPool.h
ROOT/RConcurrentHashColl.hxx
ROOT/TReentrantRWLock.hxx
ROOT/TRWSpinLock.hxx
ROOT/TSpinMutex.hxx
ROOT/TThreadedObject.hxx
SOURCES
src/RConcurrentHashColl.cxx
src/TCondition.cxx
src/TConditionImp.cxx
src/TMutex.cxx
src/TMutexImp.cxx
src/TReentrantRWLock.cxx
src/TRWLock.cxx
src/TRWMutexImp.cxx
src/TRWSpinLock.cxx
src/TSemaphore.cxx
src/TThread.cxx
src/TThreadFactory.cxx
src/TThreadImp.cxx
OBJECT_LIBRARY
STAGE1
DEPENDENCIES
Core
INSTALL_OPTIONS ${installoptions}
)
target_link_libraries(Thread PUBLIC ${CMAKE_THREAD_LIBS_INIT})
# keep include directory for ROOT/RSha256.hxx private
set_source_files_properties(src/RConcurrentHashColl.cxx
PROPERTIES INCLUDE_DIRECTORIES ${CMAKE_CURRENT_SOURCE_DIR}/../foundation/res)
if(WIN32)
target_sources(Thread PRIVATE
src/TWin32Condition.cxx
src/TWin32Mutex.cxx
src/TWin32Thread.cxx
src/TWin32ThreadFactory.cxx
)
target_sources(Thread PRIVATE
src/TPosixCondition.cxx
src/TPosixMutex.cxx
src/TPosixThread.cxx
src/TPosixThreadFactory.cxx
)
ROOT_ADD_TEST_SUBDIRECTORY(test)