1
0
mirror of https://github.com/Yours3lf/rpi-vk-driver.git synced 2025-01-19 11:52:16 +01:00
rpi-vk-driver/test/ETC/CMakeLists.txt
2020-05-18 21:58:34 +01:00

12 lines
216 B
CMake

file(GLOB testSrc
"*.h"
"*.cpp"
)
add_executable(ETC ${testSrc} )
target_compile_options(ETC PRIVATE -Wall -std=c++11
-march=${RPI_ARCH} -fPIC
)
target_link_libraries(ETC vulkan $<TARGET_OBJECTS:QPUassembler>)