CMakeLists.txt 305 Bytes
Newer Older
Paul's avatar
Paul committed
1
2

add_library(rtg 
Paul's avatar
Paul committed
3
    generate.cpp
Paul's avatar
Paul committed
4
5
6
7
    program.cpp
    shape.cpp
)
rocm_clang_tidy_check(rtg)
Paul's avatar
Paul committed
8
target_include_directories(rtg PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>)
Paul's avatar
Paul committed
9
10

add_subdirectory(onnx)
Paul's avatar
Paul committed
11
add_subdirectory(targets/cpu)
Paul's avatar
Paul committed
12
if(RTG_ENABLE_MIOPEN)
Paul's avatar
Paul committed
13
add_subdirectory(targets/miopen)
Paul's avatar
Paul committed
14
endif()