Skip to content

Commit

Permalink
Remove permissions from test app install
Browse files Browse the repository at this point in the history
  • Loading branch information
beau-lunarg committed Dec 3, 2024
1 parent 6610668 commit 13fba7c
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion test/test_apps/host-image-copy/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@ target_link_libraries(gfxrecon-testapp-host-image-copy gfxrecon-testapp-base)

common_build_directives(gfxrecon-testapp-host-image-copy)

install(TARGETS gfxrecon-testapp-host-image-copy RUNTIME DESTINATION ${GFXRECON_INSTALL_TESTAPPDIR}/host-image-copy PERMISSIONS OWNER_EXECUTE)
install(TARGETS gfxrecon-testapp-host-image-copy RUNTIME DESTINATION ${GFXRECON_INSTALL_TESTAPPDIR}/host-image-copy )

add_dependencies(gfxrecon-testapps gfxrecon-testapp-host-image-copy)
2 changes: 1 addition & 1 deletion test/test_apps/multisample-depth/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ add_executable(gfxrecon-testapp-multisample-depth app.cpp)
target_link_libraries(gfxrecon-testapp-multisample-depth vulkan_memory_allocator gfxrecon-testapp-base platform_specific)
common_build_directives(gfxrecon-testapp-multisample-depth)

install(TARGETS gfxrecon-testapp-multisample-depth RUNTIME DESTINATION ${GFXRECON_INSTALL_TESTAPPDIR}/multisample-depth PERMISSIONS OWNER_EXECUTE)
install(TARGETS gfxrecon-testapp-multisample-depth RUNTIME DESTINATION ${GFXRECON_INSTALL_TESTAPPDIR}/multisample-depth )
install(DIRECTORY shaders DESTINATION ${GFXRECON_INSTALL_TESTAPPDIR}/multisample-depth)

add_dependencies(gfxrecon-testapps gfxrecon-testapp-multisample-depth)
2 changes: 1 addition & 1 deletion test/test_apps/pipeline-binaries/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ target_link_libraries(gfxrecon-testapp-pipeline-binaries gfxrecon-testapp-base)

common_build_directives(gfxrecon-testapp-pipeline-binaries)

install(TARGETS gfxrecon-testapp-pipeline-binaries RUNTIME DESTINATION ${GFXRECON_INSTALL_TESTAPPDIR}/pipeline-binaries PERMISSIONS OWNER_EXECUTE)
install(TARGETS gfxrecon-testapp-pipeline-binaries RUNTIME DESTINATION ${GFXRECON_INSTALL_TESTAPPDIR}/pipeline-binaries )
install(DIRECTORY shaders DESTINATION ${GFXRECON_INSTALL_TESTAPPDIR}/pipeline-binaries)

add_dependencies(gfxrecon-testapps gfxrecon-testapp-pipeline-binaries)
2 changes: 1 addition & 1 deletion test/test_apps/shader-objects/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ target_link_libraries(gfxrecon-testapp-shader-objects gfxrecon-testapp-base)

common_build_directives(gfxrecon-testapp-shader-objects)

install(TARGETS gfxrecon-testapp-shader-objects RUNTIME DESTINATION ${GFXRECON_INSTALL_TESTAPPDIR}/shader-objects PERMISSIONS OWNER_EXECUTE)
install(TARGETS gfxrecon-testapp-shader-objects RUNTIME DESTINATION ${GFXRECON_INSTALL_TESTAPPDIR}/shader-objects)
install(DIRECTORY shaders DESTINATION ${GFXRECON_INSTALL_TESTAPPDIR}/shader-objects)

add_dependencies(gfxrecon-testapps gfxrecon-testapp-shader-objects)
2 changes: 1 addition & 1 deletion test/test_apps/triangle/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ target_link_libraries(gfxrecon-testapp-triangle gfxrecon-testapp-base)

common_build_directives(gfxrecon-testapp-triangle)

install(TARGETS gfxrecon-testapp-triangle RUNTIME DESTINATION ${GFXRECON_INSTALL_TESTAPPDIR}/triangle PERMISSIONS OWNER_EXECUTE)
install(TARGETS gfxrecon-testapp-triangle RUNTIME DESTINATION ${GFXRECON_INSTALL_TESTAPPDIR}/triangle)
install(DIRECTORY shaders DESTINATION ${GFXRECON_INSTALL_TESTAPPDIR}/triangle)

add_dependencies(gfxrecon-testapps gfxrecon-testapp-triangle)

0 comments on commit 13fba7c

Please sign in to comment.