1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 12:41:49 +01:00

[CMake] bugpoint-passes should not be built in "all", when LLVM_BUILD_TOOLS is OFF.

llvm-svn: 173112
This commit is contained in:
NAKAMURA Takumi 2013-01-22 01:44:00 +00:00
parent 62b734805a
commit 0de697dd90

View File

@ -1,3 +1,7 @@
if( NOT LLVM_BUILD_TOOLS )
set(EXCLUDE_FROM_ALL ON)
endif()
add_llvm_loadable_module( BugpointPasses
TestPasses.cpp
)