CMakeLists.txt 255 Bytes
Newer Older
lxq's avatar
lxq committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
add_library(
    IR_lib STATIC
    Type.cpp
    User.cpp
    Value.cpp
    BasicBlock.cpp
    Constant.cpp
    Function.cpp
    GlobalVariable.cpp
    Instruction.cpp
    Module.cpp
    IRprinter.cpp
)

target_link_libraries(
    IR_lib
    LLVMSupport
)