diff options
Diffstat (limited to 'unittests/Bitcode')
-rw-r--r-- | unittests/Bitcode/CMakeLists.txt | 8 | ||||
-rw-r--r-- | unittests/Bitcode/Makefile | 2 |
2 files changed, 9 insertions, 1 deletions
diff --git a/unittests/Bitcode/CMakeLists.txt b/unittests/Bitcode/CMakeLists.txt new file mode 100644 index 0000000..d8f5fe1 --- /dev/null +++ b/unittests/Bitcode/CMakeLists.txt @@ -0,0 +1,8 @@ +set(LLVM_LINK_COMPONENTS + BitReader + BitWriter + ) + +add_llvm_unittest(BitcodeTests + BitReaderTest.cpp + ) diff --git a/unittests/Bitcode/Makefile b/unittests/Bitcode/Makefile index aa437e7..fcec879 100644 --- a/unittests/Bitcode/Makefile +++ b/unittests/Bitcode/Makefile @@ -9,7 +9,7 @@ LEVEL = ../.. TESTNAME = Bitcode -LINK_COMPONENTS := core support bitreader bitwriter +LINK_COMPONENTS := bitreader bitwriter include $(LEVEL)/Makefile.config include $(LLVM_SRC_ROOT)/unittests/Makefile.unittest |