"magic_pdf/data/__init__.py" did not exist on "c2e5c36f796ab8a4418f2676264cbb995713f451"
CMakeLists.txt 474 Bytes
Newer Older
Chao Liu's avatar
Chao Liu committed
1
2
3
4
5
6
7
8
cmake_minimum_required(VERSION 3.15)
project(ck_app)
add_compile_options(-std=c++17)

find_package(composable_kernel 1.0.0 COMPONENTS device_operations)
find_package(hip REQUIRED PATHS /opt/rocm)
message(STATUS "Build with HIP ${hip_VERSION}")

Shaojie WANG's avatar
Shaojie WANG committed
9
10
11
# add all example subdir
file(GLOB dir_list LIST_DIRECTORIES true *)
FOREACH(subdir ${dir_list})
12
    IF(IS_DIRECTORY "${subdir}" AND (NOT "${subdir}" MATCHES "build"))
Shaojie WANG's avatar
Shaojie WANG committed
13
14
15
        add_subdirectory(${subdir})
    ENDIF()
ENDFOREACH()