mirror of
https://github.com/Yours3lf/rpi-vk-driver.git
synced 2025-01-20 12:52:15 +01:00
12 lines
240 B
CMake
12 lines
240 B
CMake
file(GLOB testSrc
|
|
"*.h"
|
|
"*.cpp"
|
|
)
|
|
|
|
add_executable(mipmapping ${testSrc} )
|
|
target_compile_options(mipmapping PRIVATE -Wall -std=c++11 -std=c11
|
|
-march=${RPI_ARCH}
|
|
)
|
|
|
|
target_link_libraries(mipmapping vulkan $<TARGET_OBJECTS:QPUassembler>)
|