CMake: fix Make install for iOS/MacOS (#395)

INSTALL TARGETS were missing the BUNDLE DESTINATION

Fix By: Anton Danielsson (@anton-danielsson)
pull/396/head
Anton Danielsson 4 years ago committed by GitHub
parent db8905a666
commit ca34b35388
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      CMakeLists.txt

@ -75,6 +75,7 @@ SET (PACKAGE_DIRECTORY ${PROJECT_BINARY_DIR}/package)
# Destinations for installing different kinds of targets (pass to install command).
SET (TARGETS_INST_DEST
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
BUNDLE DESTINATION ${CMAKE_INSTALL_BINDIR}
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}
)

Loading…
Cancel
Save