xref: /aosp_15_r20/external/OpenCL-Headers/tests/pkgconfig/sdk/CMakeLists.txt (revision 3cc257528f335c5672e46865a03b8ee020e5fe2d)
1cmake_minimum_required(VERSION 3.0)
2
3project(PkgConfigTest
4  LANGUAGES C
5)
6
7find_package(OpenCL
8  REQUIRED
9  CONFIG
10  COMPONENTS Headers
11)
12
13add_executable(${PROJECT_NAME}
14  ../pkgconfig.c
15)
16
17target_link_libraries(${PROJECT_NAME}
18  OpenCL::Headers
19)
20
21target_compile_definitions(${PROJECT_NAME}
22  PRIVATE
23    CL_TARGET_OPENCL_VERSION=120
24)
25