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

5
add_subdirectory(ir)
6 7 8 9
add_subdirectory(pass)

add_executable(phi-exec phi_exec.cc)
target_link_libraries(phi-exec infrt)
10 11 12

gather_srcs(infrt_src SRCS
    data_type.cc)