1
0
mirror of https://github.com/Yours3lf/rpi-vk-driver.git synced 2025-01-18 10:52:14 +01:00
This commit is contained in:
yours3lf 2020-05-17 17:41:25 +01:00
parent 30f4e070c2
commit 335600fdc8
16 changed files with 16 additions and 16 deletions

View File

@ -4,7 +4,7 @@ file(GLOB testSrc
)
add_executable(ETC ${testSrc} )
target_compile_options(ETC PRIVATE -Wall -std=c++11 -std=c11
target_compile_options(ETC PRIVATE -Wall -std=c++11
-march=${RPI_ARCH}
)

View File

@ -4,7 +4,7 @@ file(GLOB testSrc
)
add_executable(HDR ${testSrc} )
target_compile_options(HDR PRIVATE -Wall -std=c++11 -std=c11
target_compile_options(HDR PRIVATE -Wall -std=c++11
-march=${RPI_ARCH}
)

View File

@ -4,7 +4,7 @@ file(GLOB testSrc
)
add_executable(MSAA ${testSrc} )
target_compile_options(MSAA PRIVATE -Wall -std=c++11 -std=c11
target_compile_options(MSAA PRIVATE -Wall -std=c++11
-march=${RPI_ARCH}
)

View File

@ -4,7 +4,7 @@ file(GLOB testSrc
)
add_executable(attribTest ${testSrc} )
target_compile_options(attribTest PRIVATE -Wall -std=c++11 -std=c11
target_compile_options(attribTest PRIVATE -Wall -std=c++11
-march=${RPI_ARCH}
)

View File

@ -4,7 +4,7 @@ file(GLOB testSrc
)
add_executable(blending ${testSrc} )
target_compile_options(blending PRIVATE -Wall -std=c++11 -std=c11
target_compile_options(blending PRIVATE -Wall -std=c++11
-march=${RPI_ARCH}
)

View File

@ -4,7 +4,7 @@ file(GLOB testSrc
)
add_executable(clearTest ${testSrc} )
target_compile_options(clearTest PRIVATE -Wall -std=c++11 -std=c11
target_compile_options(clearTest PRIVATE -Wall -std=c++11
-march=${RPI_ARCH}
)

View File

@ -4,7 +4,7 @@ file(GLOB testSrc
)
add_executable(cubemapping ${testSrc} )
target_compile_options(cubemapping PRIVATE -Wall -std=c++11 -std=c11
target_compile_options(cubemapping PRIVATE -Wall -std=c++11
-march=${RPI_ARCH}
)

View File

@ -4,7 +4,7 @@ file(GLOB testSrc
)
add_executable(depthTest ${testSrc} )
target_compile_options(depthTest PRIVATE -Wall -std=c++11 -std=c11
target_compile_options(depthTest PRIVATE -Wall -std=c++11
-march=${RPI_ARCH}
)

View File

@ -4,7 +4,7 @@ file(GLOB testSrc
)
add_executable(depthTex ${testSrc} )
target_compile_options(depthTex PRIVATE -Wall -std=c++11 -std=c11
target_compile_options(depthTex PRIVATE -Wall -std=c++11
-march=${RPI_ARCH}
)

View File

@ -4,7 +4,7 @@ file(GLOB testSrc
)
add_executable(indexedTriangle ${testSrc} )
target_compile_options(indexedTriangle PRIVATE -Wall -std=c++11 -std=c11
target_compile_options(indexedTriangle PRIVATE -Wall -std=c++11
-march=${RPI_ARCH}
)

View File

@ -4,7 +4,7 @@ file(GLOB testSrc
)
add_executable(mipmapping ${testSrc} )
target_compile_options(mipmapping PRIVATE -Wall -std=c++11 -std=c11
target_compile_options(mipmapping PRIVATE -Wall -std=c++11
-march=${RPI_ARCH}
)

View File

@ -4,7 +4,7 @@ file(GLOB testSrc
)
add_executable(query ${testSrc} )
target_compile_options(query PRIVATE -Wall -std=c++11 -std=c11
target_compile_options(query PRIVATE -Wall -std=c++11
-march=${RPI_ARCH}
)

View File

@ -4,7 +4,7 @@ file(GLOB testSrc
)
add_executable(stencilTest ${testSrc} )
target_compile_options(stencilTest PRIVATE -Wall -std=c++11 -std=c11
target_compile_options(stencilTest PRIVATE -Wall -std=c++11
-march=${RPI_ARCH}
)

View File

@ -4,7 +4,7 @@ file(GLOB testSrc
)
add_executable(texturing ${testSrc} )
target_compile_options(texturing PRIVATE -Wall -std=c++11 -std=c11
target_compile_options(texturing PRIVATE -Wall -std=c++11
-march=${RPI_ARCH}
)

View File

@ -4,7 +4,7 @@ file(GLOB testSrc
)
add_executable(triangle ${testSrc} )
target_compile_options(triangle PRIVATE -Wall -std=c++11 -std=c11
target_compile_options(triangle PRIVATE -Wall -std=c++11
-march=${RPI_ARCH}
)

View File

@ -4,7 +4,7 @@ file(GLOB testSrc
)
add_executable(varyings ${testSrc} )
target_compile_options(varyings PRIVATE -Wall -std=c++11 -std=c11
target_compile_options(varyings PRIVATE -Wall -std=c++11
-march=${RPI_ARCH}
)