diff options
Diffstat (limited to 'source/Plugins/LanguageRuntime')
8 files changed, 0 insertions, 82 deletions
diff --git a/source/Plugins/LanguageRuntime/CMakeLists.txt b/source/Plugins/LanguageRuntime/CMakeLists.txt deleted file mode 100644 index c62791445a9a2..0000000000000 --- a/source/Plugins/LanguageRuntime/CMakeLists.txt +++ /dev/null @@ -1,3 +0,0 @@ -add_subdirectory(CPlusPlus) -add_subdirectory(ObjC) -add_subdirectory(RenderScript) diff --git a/source/Plugins/LanguageRuntime/CPlusPlus/CMakeLists.txt b/source/Plugins/LanguageRuntime/CPlusPlus/CMakeLists.txt deleted file mode 100644 index 26c68c60b0198..0000000000000 --- a/source/Plugins/LanguageRuntime/CPlusPlus/CMakeLists.txt +++ /dev/null @@ -1,2 +0,0 @@ -add_subdirectory(ItaniumABI) -#add_subdirectory(MicrosoftABI) diff --git a/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/CMakeLists.txt b/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/CMakeLists.txt deleted file mode 100644 index 14d1f46caebb9..0000000000000 --- a/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/CMakeLists.txt +++ /dev/null @@ -1,10 +0,0 @@ -add_lldb_library(lldbPluginCXXItaniumABI PLUGIN - ItaniumABILanguageRuntime.cpp - - LINK_LIBS - lldbBreakpoint - lldbCore - lldbInterpreter - lldbSymbol - lldbTarget - ) diff --git a/source/Plugins/LanguageRuntime/Go/CMakeLists.txt b/source/Plugins/LanguageRuntime/Go/CMakeLists.txt deleted file mode 100644 index 62418def58f63..0000000000000 --- a/source/Plugins/LanguageRuntime/Go/CMakeLists.txt +++ /dev/null @@ -1,11 +0,0 @@ -set(LLVM_NO_RTTI 1) - -add_lldb_library(lldbPluginLanguageRuntimeGo PLUGIN - LINK_LIBS - lldbBreakpoint - lldbCore - lldbSymbol - lldbTarget - LINK_COMPONENTS - Support - ) diff --git a/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/CMakeLists.txt b/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/CMakeLists.txt deleted file mode 100644 index 18f3ae1c5b1e3..0000000000000 --- a/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/CMakeLists.txt +++ /dev/null @@ -1,24 +0,0 @@ -add_lldb_library(lldbPluginAppleObjCRuntime PLUGIN - AppleObjCRuntime.cpp - AppleObjCRuntimeV1.cpp - AppleObjCRuntimeV2.cpp - AppleObjCTrampolineHandler.cpp - AppleObjCDeclVendor.cpp - AppleThreadPlanStepThroughObjCTrampoline.cpp - AppleObjCClassDescriptorV2.cpp - AppleObjCTypeEncodingParser.cpp - - LINK_LIBS - clangAST - lldbBreakpoint - lldbCore - lldbExpression - lldbHost - lldbInterpreter - lldbSymbol - lldbTarget - lldbUtility - lldbPluginExpressionParserClang - LINK_COMPONENTS - Support - ) diff --git a/source/Plugins/LanguageRuntime/ObjC/CMakeLists.txt b/source/Plugins/LanguageRuntime/ObjC/CMakeLists.txt deleted file mode 100644 index af13dc6a144de..0000000000000 --- a/source/Plugins/LanguageRuntime/ObjC/CMakeLists.txt +++ /dev/null @@ -1 +0,0 @@ -add_subdirectory(AppleObjCRuntime) diff --git a/source/Plugins/LanguageRuntime/RenderScript/CMakeLists.txt b/source/Plugins/LanguageRuntime/RenderScript/CMakeLists.txt deleted file mode 100644 index d944d76c49578..0000000000000 --- a/source/Plugins/LanguageRuntime/RenderScript/CMakeLists.txt +++ /dev/null @@ -1 +0,0 @@ -add_subdirectory(RenderScriptRuntime) diff --git a/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/CMakeLists.txt b/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/CMakeLists.txt deleted file mode 100644 index 1a6c499461340..0000000000000 --- a/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/CMakeLists.txt +++ /dev/null @@ -1,30 +0,0 @@ -if(NOT LLDB_BUILT_STANDALONE) - set(tablegen_deps intrinsics_gen) -endif() - - -add_lldb_library(lldbPluginRenderScriptRuntime PLUGIN - RenderScriptRuntime.cpp - RenderScriptExpressionOpts.cpp - RenderScriptx86ABIFixups.cpp - RenderScriptScriptGroup.cpp - - DEPENDS - ${tablegen_deps} - - LINK_LIBS - clangBasic - lldbBreakpoint - lldbCore - lldbDataFormatters - lldbExpression - lldbHost - lldbInterpreter - lldbSymbol - lldbTarget - LINK_COMPONENTS - Core - IRReader - Support - Target - ) |