diff options
| author | Douglas Gregor <dgregor@apple.com> | 2009-06-04 19:53:37 +0000 |
|---|---|---|
| committer | Douglas Gregor <dgregor@apple.com> | 2009-06-04 19:53:37 +0000 |
| commit | 5c273ce20e7df422244e44e94e687c145f0388f5 (patch) | |
| tree | 0b58f6a8ff3def1278fc4113bc43383f191252f6 /llvm/tools | |
| parent | 8001b35d5d6cb5737696919e23a58f7c9fdf2be0 (diff) | |
| download | bcm5719-llvm-5c273ce20e7df422244e44e94e687c145f0388f5.tar.gz bcm5719-llvm-5c273ce20e7df422244e44e94e687c145f0388f5.zip | |
CMake: Use explicit dependencies for Xcode (as well as MSVC), to make
the CMake-generated Xcode project build properly.
llvm-svn: 72883
Diffstat (limited to 'llvm/tools')
| -rw-r--r-- | llvm/tools/CMakeLists.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/tools/CMakeLists.txt b/llvm/tools/CMakeLists.txt index 113d98743c4..5c1ee351a2a 100644 --- a/llvm/tools/CMakeLists.txt +++ b/llvm/tools/CMakeLists.txt @@ -2,9 +2,9 @@ # large and three small executables. This is done to minimize memory load # in parallel builds. Please retain this ordering. -if( NOT MSVC ) - add_subdirectory(llvm-config) -endif( NOT MSVC ) +if (NOT USE_EXPLICIT_DEPENDENCIES) + add_subdirectory(llvm-config) +endif() add_subdirectory(opt) add_subdirectory(llvm-as) |

