1
0
mirror of https://github.com/Yours3lf/rpi-vk-driver.git synced 2024-12-01 13:24:20 +01:00
rpi-vk-driver/driver/CMakeLists.txt

10 lines
295 B
CMake
Raw Normal View History

file(GLOB driverSrc
"*.h"
"*.c"
)
2019-09-30 00:52:21 +02:00
add_library(rpi-vk-driver SHARED ${driverSrc})
target_compile_options(rpi-vk-driver PRIVATE -Wall -Werror=implicit-function-declaration -std=c11)
2019-09-30 02:13:55 +02:00
target_link_libraries(rpi-vk-driver drm pthread expat z $<TARGET_OBJECTS:brcm> $<TARGET_OBJECTS:QPUassembler>)