2020-05-18 21:58:34 +01:00
|
|
|
file(GLOB testSrc
|
|
|
|
"*.h"
|
|
|
|
"*.cpp"
|
|
|
|
)
|
|
|
|
|
|
|
|
add_executable(mintest ${testSrc})
|
|
|
|
target_compile_options(mintest PRIVATE -Wall -std=c++11
|
|
|
|
-march=${RPI_ARCH} -fPIC
|
|
|
|
)
|
|
|
|
|
2020-05-18 22:38:57 +01:00
|
|
|
target_link_libraries(mintest rpi-vk-driver)
|