2020-03-07 11:13:08 +00:00
|
|
|
file(GLOB testSrc
|
|
|
|
"*.h"
|
|
|
|
"*.cpp"
|
|
|
|
)
|
|
|
|
|
|
|
|
add_executable(CPAtest ${testSrc})
|
2020-05-17 17:29:04 +01:00
|
|
|
target_compile_options(CPAtest PRIVATE -Wall -std=c++11
|
|
|
|
-march=${RPI_ARCH}
|
|
|
|
)
|
2020-03-07 11:13:08 +00:00
|
|
|
|
|
|
|
target_link_libraries(CPAtest rpi-vk-driver)
|