Joerg Sonnenberger | 340a175 | 2013-09-25 10:37:32 +0000 | [diff] [blame] | 1 | set(LLVM_NO_RTTI 1) |
| 2 | |
Zachary Turner | 7513e82 | 2015-02-17 22:20:20 +0000 | [diff] [blame^] | 3 | if ( CMAKE_SYSTEM_NAME MATCHES "Windows" ) |
| 4 | add_definitions( -DEXPORT_LIBLLDB ) |
| 5 | endif() |
| 6 | |
Joerg Sonnenberger | 340a175 | 2013-09-25 10:37:32 +0000 | [diff] [blame] | 7 | add_lldb_library(lldbAPI |
| 8 | SBAddress.cpp |
Oleksiy Vyalov | 71d08b3 | 2015-02-16 00:04:19 +0000 | [diff] [blame] | 9 | SBAttachInfo.cpp |
Joerg Sonnenberger | 340a175 | 2013-09-25 10:37:32 +0000 | [diff] [blame] | 10 | SBBlock.cpp |
| 11 | SBBreakpoint.cpp |
| 12 | SBBreakpointLocation.cpp |
| 13 | SBBroadcaster.cpp |
| 14 | SBCommandInterpreter.cpp |
| 15 | SBCommandReturnObject.cpp |
| 16 | SBCommunication.cpp |
| 17 | SBCompileUnit.cpp |
| 18 | SBData.cpp |
| 19 | SBDebugger.cpp |
| 20 | SBDeclaration.cpp |
| 21 | SBError.cpp |
| 22 | SBEvent.cpp |
Chandler Carruth | b8a4ecb | 2014-10-01 21:33:28 +0000 | [diff] [blame] | 23 | SBExecutionContext.cpp |
Joerg Sonnenberger | 340a175 | 2013-09-25 10:37:32 +0000 | [diff] [blame] | 24 | SBExpressionOptions.cpp |
| 25 | SBFileSpec.cpp |
| 26 | SBFileSpecList.cpp |
| 27 | SBFrame.cpp |
| 28 | SBFunction.cpp |
| 29 | SBHostOS.cpp |
Joerg Sonnenberger | 340a175 | 2013-09-25 10:37:32 +0000 | [diff] [blame] | 30 | SBInstruction.cpp |
| 31 | SBInstructionList.cpp |
Oleksiy Vyalov | 1ef7b2c | 2015-02-04 23:19:15 +0000 | [diff] [blame] | 32 | SBLaunchInfo.cpp |
Joerg Sonnenberger | 340a175 | 2013-09-25 10:37:32 +0000 | [diff] [blame] | 33 | SBLineEntry.cpp |
| 34 | SBListener.cpp |
| 35 | SBModule.cpp |
| 36 | SBModuleSpec.cpp |
Ed Maste | 5341404 | 2013-11-21 14:38:22 +0000 | [diff] [blame] | 37 | SBPlatform.cpp |
Joerg Sonnenberger | 340a175 | 2013-09-25 10:37:32 +0000 | [diff] [blame] | 38 | SBProcess.cpp |
Jason Molenda | 5e8dce4 | 2013-12-13 00:29:16 +0000 | [diff] [blame] | 39 | SBQueue.cpp |
| 40 | SBQueueItem.cpp |
Joerg Sonnenberger | 340a175 | 2013-09-25 10:37:32 +0000 | [diff] [blame] | 41 | SBSection.cpp |
| 42 | SBSourceManager.cpp |
| 43 | SBStream.cpp |
| 44 | SBStringList.cpp |
| 45 | SBSymbol.cpp |
| 46 | SBSymbolContext.cpp |
| 47 | SBSymbolContextList.cpp |
| 48 | SBTarget.cpp |
| 49 | SBThread.cpp |
Kuba Brecka | aaa0b81 | 2014-09-06 01:22:55 +0000 | [diff] [blame] | 50 | SBThreadCollection.cpp |
Todd Fiala | 8a3716b | 2014-09-30 15:58:56 +0000 | [diff] [blame] | 51 | SBThreadPlan.cpp |
Joerg Sonnenberger | 340a175 | 2013-09-25 10:37:32 +0000 | [diff] [blame] | 52 | SBType.cpp |
| 53 | SBTypeCategory.cpp |
Todd Fiala | 732215f | 2014-06-02 20:55:29 +0000 | [diff] [blame] | 54 | SBTypeEnumMember.cpp |
Joerg Sonnenberger | 340a175 | 2013-09-25 10:37:32 +0000 | [diff] [blame] | 55 | SBTypeFilter.cpp |
| 56 | SBTypeFormat.cpp |
| 57 | SBTypeNameSpecifier.cpp |
| 58 | SBTypeSummary.cpp |
| 59 | SBTypeSynthetic.cpp |
| 60 | SBValue.cpp |
| 61 | SBValueList.cpp |
Zachary Turner | 51f96ee | 2015-02-17 17:55:50 +0000 | [diff] [blame] | 62 | SBVariablesOptions.cpp |
Joerg Sonnenberger | 340a175 | 2013-09-25 10:37:32 +0000 | [diff] [blame] | 63 | SBWatchpoint.cpp |
Todd Fiala | 802dc402 | 2014-06-23 19:30:49 +0000 | [diff] [blame] | 64 | SBUnixSignals.cpp |
Joerg Sonnenberger | 340a175 | 2013-09-25 10:37:32 +0000 | [diff] [blame] | 65 | ) |