From 6b01837b65750bad26ce186033689607979da89f Mon Sep 17 00:00:00 2001 From: Rafael Espindola Date: Sun, 8 Aug 2010 00:50:57 +0000 Subject: [PATCH] Try to fix cmake build. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@110528 91177308-0d34-0410-b5e6-96231b3b80d8 --- tools/CMakeLists.txt | 1 + tools/bugpoint-passes/CMakeLists.txt | 3 +++ tools/bugpoint/CMakeLists.txt | 1 - 3 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 tools/bugpoint-passes/CMakeLists.txt diff --git a/tools/CMakeLists.txt b/tools/CMakeLists.txt index b9c77b1c8a3..6ca57302d23 100644 --- a/tools/CMakeLists.txt +++ b/tools/CMakeLists.txt @@ -29,6 +29,7 @@ add_subdirectory(lli) add_subdirectory(llvm-extract) add_subdirectory(bugpoint) +add_subdirectory(bugpoint-passes) add_subdirectory(llvm-bcanalyzer) add_subdirectory(llvm-stub) add_subdirectory(edis) diff --git a/tools/bugpoint-passes/CMakeLists.txt b/tools/bugpoint-passes/CMakeLists.txt new file mode 100644 index 00000000000..50109a52c24 --- /dev/null +++ b/tools/bugpoint-passes/CMakeLists.txt @@ -0,0 +1,3 @@ +add_llvm_loadable_module( BugpointPasses + TestPasses.cpp + ) diff --git a/tools/bugpoint/CMakeLists.txt b/tools/bugpoint/CMakeLists.txt index 34b759fd879..e06feb10031 100644 --- a/tools/bugpoint/CMakeLists.txt +++ b/tools/bugpoint/CMakeLists.txt @@ -9,7 +9,6 @@ add_llvm_tool(bugpoint FindBugs.cpp Miscompilation.cpp OptimizerDriver.cpp - TestPasses.cpp ToolRunner.cpp bugpoint.cpp ) -- 2.34.1