CMakeLists.txt 236 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11

add_executable(gpu-driver
    action.cpp
    compile_pointwise.cpp
    main.cpp
    parser.cpp
    perf.cpp
    run_op.cpp
)
target_include_directories(gpu-driver PRIVATE include)
target_link_libraries(gpu-driver PRIVATE migraphx_gpu)