Some checks failed
sm-rpc / build (Debug, arm-linux-gnueabihf) (push) Successful in 1m34s
sm-rpc / build (Debug, aarch64-linux-gnu) (push) Successful in 2m46s
sm-rpc / build (Debug, host.gcc) (push) Failing after 1m28s
sm-rpc / build (Release, aarch64-linux-gnu) (push) Successful in 2m14s
sm-rpc / build (Release, arm-linux-gnueabihf) (push) Successful in 2m8s
sm-rpc / build (Debug, mipsel-linux-gnu) (push) Successful in 5m35s
sm-rpc / build (Release, host.gcc) (push) Failing after 1m55s
sm-rpc / build (Release, mipsel-linux-gnu) (push) Successful in 7m21s
18 lines
579 B
CMake
18 lines
579 B
CMake
cmake_minimum_required(VERSION 3.10)
|
|
|
|
project(OpenCLVectorAdd)
|
|
|
|
set(THREADS_PREFER_PTHREAD_FLAG ON)
|
|
find_package(Threads REQUIRED)
|
|
|
|
find_package(OpenCL REQUIRED)
|
|
|
|
add_executable(OpenCLVectorAdd OpenCLVectorAdd.cpp)
|
|
|
|
add_library(TracyClient STATIC ../../public/TracyClient.cpp
|
|
../../public/tracy/TracyOpenCL.hpp)
|
|
target_include_directories(TracyClient PUBLIC ../../public/tracy)
|
|
target_compile_definitions(TracyClient PUBLIC TRACY_ENABLE=1)
|
|
|
|
target_link_libraries(OpenCLVectorAdd PUBLIC OpenCL::OpenCL TracyClient ${CMAKE_DL_LIBS} Threads::Threads)
|