diff options
author | Michael J. Spencer <bigcheesegs@gmail.com> | 2010-09-24 09:01:13 +0000 |
---|---|---|
committer | Michael J. Spencer <bigcheesegs@gmail.com> | 2010-09-24 09:01:13 +0000 |
commit | ee6944f4ab4258e6b7b9c91c0c18444193d6f55a (patch) | |
tree | f2ae8d853d901e248eeee9abc7dcf66b7bd5c02b /CMakeLists.txt | |
parent | c8417d7165e156739cd768713db0113383ede07e (diff) | |
download | external_llvm-ee6944f4ab4258e6b7b9c91c0c18444193d6f55a.zip external_llvm-ee6944f4ab4258e6b7b9c91c0c18444193d6f55a.tar.gz external_llvm-ee6944f4ab4258e6b7b9c91c0c18444193d6f55a.tar.bz2 |
CMake: Build unittests.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@114725 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index dba2929..7959f65 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -305,7 +305,6 @@ add_subdirectory(lib/Analysis/IPA) add_subdirectory(lib/MC) add_subdirectory(lib/MC/MCParser) add_subdirectory(lib/MC/MCDisassembler) -add_subdirectory(test) add_subdirectory(utils/FileCheck) add_subdirectory(utils/count) @@ -370,6 +369,12 @@ add_subdirectory(tools) option(LLVM_BUILD_EXAMPLES "Build LLVM example programs." OFF) add_subdirectory(examples) +option(LLVM_BUILD_TESTS "Build LLVM unit tests." OFF) +add_subdirectory(test) +add_subdirectory(utils/unittest) +add_subdirectory(unittests) + + add_subdirectory(cmake/modules) install(DIRECTORY include/ |