CMakeLists.txt 292 B

123456789101112
  1. set(HLSL_IGNORE_SOURCES BitReader.cpp)
  2. add_llvm_library(LLVMBitReader
  3. # BitReader.cpp # HLSL Change - this is just the C wrapper
  4. BitcodeReader.cpp
  5. BitstreamReader.cpp
  6. ADDITIONAL_HEADER_DIRS
  7. ${LLVM_MAIN_INCLUDE_DIR}/llvm/Bitcode
  8. )
  9. add_dependencies(LLVMBitReader intrinsics_gen)