2019-09-23 16:56:36 +01:00
|
|
|
file(GLOB testSrc
|
|
|
|
"*.h"
|
|
|
|
"*.cpp"
|
|
|
|
)
|
|
|
|
|
|
|
|
add_executable(stencilTest ${testSrc} )
|
|
|
|
target_compile_options(stencilTest PRIVATE -Wall -std=c++11 -std=c11)
|
|
|
|
|
2020-04-17 20:59:04 +01:00
|
|
|
target_link_libraries(stencilTest vulkan $<TARGET_OBJECTS:QPUassembler>)
|