Support: Remove Alarm. It is unused (via local grep and google code search).
[oota-llvm.git] / lib / Support / CMakeLists.txt
1 ## FIXME: This only requires RTTI because tblgen uses it.  Fix that.
2 set(LLVM_REQUIRES_RTTI 1)
3 if( MINGW )
4   set(LLVM_REQUIRES_EH 1)
5 endif()
6
7 add_llvm_library(LLVMSupport
8   APFloat.cpp
9   APInt.cpp
10   APSInt.cpp
11   Allocator.cpp
12   circular_raw_ostream.cpp
13   CommandLine.cpp
14   ConstantRange.cpp
15   CrashRecoveryContext.cpp
16   Debug.cpp
17   DeltaAlgorithm.cpp
18   DAGDeltaAlgorithm.cpp
19   Dwarf.cpp
20   ErrorHandling.cpp
21   FileUtilities.cpp
22   FoldingSet.cpp
23   FormattedStream.cpp
24   GraphWriter.cpp
25   IntervalMap.cpp
26   IsInf.cpp
27   IsNAN.cpp
28   ManagedStatic.cpp
29   MemoryBuffer.cpp
30   MemoryObject.cpp
31   PluginLoader.cpp
32   PrettyStackTrace.cpp
33   Regex.cpp
34   SmallPtrSet.cpp
35   SmallVector.cpp
36   SourceMgr.cpp
37   Statistic.cpp
38   StringExtras.cpp
39   StringMap.cpp
40   StringPool.cpp
41   StringRef.cpp
42   SystemUtils.cpp
43   TargetRegistry.cpp
44   Timer.cpp
45   ToolOutputFile.cpp
46   Triple.cpp
47   Twine.cpp
48   raw_os_ostream.cpp
49   raw_ostream.cpp
50   regcomp.c
51   regerror.c
52   regexec.c
53   regfree.c
54   regstrlcpy.c
55
56 # System
57   Atomic.cpp
58   Disassembler.cpp
59   DynamicLibrary.cpp
60   Errno.cpp
61   Host.cpp
62   IncludeFile.cpp
63   Memory.cpp
64   Mutex.cpp
65   Path.cpp
66   PathV2.cpp
67   Process.cpp
68   Program.cpp
69   RWMutex.cpp
70   SearchForAddressOfSpecialSymbol.cpp
71   Signals.cpp
72   system_error.cpp
73   ThreadLocal.cpp
74   Threading.cpp
75   TimeValue.cpp
76   Valgrind.cpp
77   Unix/Host.inc
78   Unix/Memory.inc
79   Unix/Mutex.inc
80   Unix/Path.inc
81   Unix/PathV2.inc
82   Unix/Process.inc
83   Unix/Program.inc
84   Unix/RWMutex.inc
85   Unix/Signals.inc
86   Unix/system_error.inc
87   Unix/ThreadLocal.inc
88   Unix/TimeValue.inc
89   Windows/DynamicLibrary.inc
90   Windows/Host.inc
91   Windows/Memory.inc
92   Windows/Mutex.inc
93   Windows/Path.inc
94   Windows/PathV2.inc
95   Windows/Process.inc
96   Windows/Program.inc
97   Windows/RWMutex.inc
98   Windows/Signals.inc
99   Windows/system_error.inc
100   Windows/ThreadLocal.inc
101   Windows/TimeValue.inc
102   )