summaryrefslogtreecommitdiff
path: root/backend/src/CMakeLists.txt
diff options
context:
space:
mode:
authorBenjamin Segovia <segovia.benjamin@gmail.com>2012-02-27 14:24:14 +0000
committerKeith Packard <keithp@keithp.com>2012-08-10 16:15:27 -0700
commit1ee8c0d82d1ca51631c75263da6fe0de8de1595c (patch)
tree3545d0794d0c12b0d4a3124fa28b2c8e38db5cab /backend/src/CMakeLists.txt
parent5686905f9ec0fd94b5ae32b4fc68431553588fb9 (diff)
Removed the crap related to llvm targets and triples
Diffstat (limited to 'backend/src/CMakeLists.txt')
-rw-r--r--backend/src/CMakeLists.txt9
1 files changed, 7 insertions, 2 deletions
diff --git a/backend/src/CMakeLists.txt b/backend/src/CMakeLists.txt
index 3326f109..86a37fc6 100644
--- a/backend/src/CMakeLists.txt
+++ b/backend/src/CMakeLists.txt
@@ -53,8 +53,13 @@ include_directories (.)
link_directories (${LLVM_LIBRARY_DIRS})
add_library (gbe SHARED ${GBE_SRC})
include (${LLVM_DIR}/AddLLVMDefinitions.cmake)
-target_link_libraries (gbe LLVMGenBackend LLVMSelectionDAG LLVMAsmPrinter
- LLVMMCParser LLVMAsmParser LLVMBitReader)
+target_link_libraries (gbe
+ LLVMGenBackend
+ LLVMSelectionDAG
+ LLVMAsmPrinter
+ LLVMMCParser
+ LLVMAsmParser
+ LLVMBitReader)
if (GBE_COMPILE_UTESTS)
set (TESTER_SRC utest/tester.cpp)