mirror of
https://github.com/Yours3lf/rpi-vk-driver.git
synced 2025-01-19 11:52:16 +01:00
13 lines
242 B
CMake
13 lines
242 B
CMake
file(GLOB testSrc
|
|
"*.h"
|
|
"*.cpp"
|
|
)
|
|
|
|
add_executable(mintest ${testSrc})
|
|
target_compile_options(mintest PRIVATE -Wall -std=c++11
|
|
-march=${RPI_ARCH} -fPIC
|
|
)
|
|
|
|
#target_link_libraries(mintest rpi-vk-driver)
|
|
target_link_libraries(mintest vulkan)
|