CMakeLists.txt 298 字节
Newer Older
1 2 3 4
if (NOT INFRT_WITH_PHI)
    return()
endif()

5
add_subdirectory(ir)
6 7
add_subdirectory(pass)

8 9 10 11
add_executable(phi-ir-exec phi_ir_exec.cc)
target_link_libraries(phi-ir-exec infrt)


12 13
add_executable(phi-exec phi_exec.cc)
target_link_libraries(phi-exec infrt)
14 15 16

gather_srcs(infrt_src SRCS
    data_type.cc)