mirror of
https://github.com/Yours3lf/rpi-vk-driver.git
synced 2024-12-01 13:24:20 +01:00
12 lines
315 B
CMake
12 lines
315 B
CMake
file(GLOB driverSrc
|
|
"*.h"
|
|
"*.c"
|
|
)
|
|
|
|
add_library(rpi-vk-driver SHARED ${driverSrc})
|
|
target_compile_options(rpi-vk-driver PRIVATE -Wall -Wextra -Wpacked -Wcast-align -std=c11
|
|
-march=${RPI_ARCH} -fPIC
|
|
)
|
|
|
|
target_link_libraries(rpi-vk-driver drm pthread expat z $<TARGET_OBJECTS:brcm> $<TARGET_OBJECTS:QPUassembler>)
|