diff options
| author | Jeremy Kniager <jeremyk@lunarg.com> | 2018-11-08 16:20:42 -0700 |
|---|---|---|
| committer | jeremyk-lunarg <jeremyk@lunarg.com> | 2018-11-09 09:06:59 -0700 |
| commit | 7d074d4fb44bb362e7b356c85a6cb92286056a3e (patch) | |
| tree | f916c82f32a7cc6279e71a98cf12973ba1dd0050 /cube | |
| parent | ca8d349beed75d8fa6d27884cce4f091b6dc2a1e (diff) | |
| download | usermoji-7d074d4fb44bb362e7b356c85a6cb92286056a3e.tar.xz | |
cube: Fix fixup_bundle not set to proper cube
Changed fixup_bundle pointing at cube.app and
cubepp.app to point to vkcube.app and vkcubepp.app
Diffstat (limited to 'cube')
| -rw-r--r-- | cube/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cube/CMakeLists.txt b/cube/CMakeLists.txt index 0386204d..ac39830f 100644 --- a/cube/CMakeLists.txt +++ b/cube/CMakeLists.txt @@ -199,7 +199,7 @@ if(APPLE) # Fix up the library references to be self-contained within the bundle. install(CODE " include(BundleUtilities) - fixup_bundle(\${CMAKE_INSTALL_PREFIX}/cube/cube.app \"\" \"${Vulkan_LIBRARY_DIR}\") + fixup_bundle(\${CMAKE_INSTALL_PREFIX}/cube/vkcube.app \"\" \"${Vulkan_LIBRARY_DIR}\") ") else() install(TARGETS vkcube RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}) @@ -244,7 +244,7 @@ if(APPLE) # Fix up the library references to be self-contained within the bundle. install(CODE " include(BundleUtilities) - fixup_bundle(\${CMAKE_INSTALL_PREFIX}/cube/cubepp.app \"\" \"${Vulkan_LIBRARY_DIR}\") + fixup_bundle(\${CMAKE_INSTALL_PREFIX}/cube/vkcubepp.app \"\" \"${Vulkan_LIBRARY_DIR}\") ") else() install(TARGETS vkcubepp RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}) |
