2020-02-25 17:33:19 +00:00
|
|
|
file(GLOB testSrc
|
|
|
|
"*.h"
|
|
|
|
"*.cpp"
|
|
|
|
)
|
|
|
|
|
|
|
|
add_executable(mipmapping ${testSrc} )
|
|
|
|
target_compile_options(mipmapping PRIVATE -Wall -std=c++11 -std=c11)
|
|
|
|
|
2020-04-17 20:59:04 +01:00
|
|
|
target_link_libraries(mipmapping vulkan $<TARGET_OBJECTS:QPUassembler>)
|