Welcome to mirror list, hosted at ThFree Co, Russian Federation.

CMakeLists.txt « X86 « Target « lib « bolt - github.com/llvm/llvm-project.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8d4ec2d09e07d96a1a04f3f10fa6fd3480e46fbe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
set(LLVM_LINK_COMPONENTS
  BOLTCore
  BOLTUtils
  MC
  Support
  X86Desc
  )

add_llvm_library(LLVMBOLTTargetX86
  X86MCPlusBuilder.cpp

  DEPENDS
  X86CommonTableGen
  )

include_directories(
  ${LLVM_MAIN_SRC_DIR}/lib/Target/X86
  ${LLVM_BINARY_DIR}/lib/Target/X86
  )