mirror of
https://github.com/overte-org/overte.git
synced 2025-04-25 18:16:08 +02:00
56 lines
No EOL
2.1 KiB
CMake
56 lines
No EOL
2.1 KiB
CMake
#
|
|
# FixupBundlePostBuild.cmake.in
|
|
# cmake/templates
|
|
#
|
|
# Copyright 2015 High Fidelity, Inc.
|
|
# Created by Stephen Birarda on February 13, 2014
|
|
#
|
|
# Distributed under the Apache License, Version 2.0.
|
|
# See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
#
|
|
|
|
include(BundleUtilities)
|
|
|
|
|
|
# replace copy_resolved_item_into_bundle
|
|
#
|
|
# The official version of copy_resolved_item_into_bundle will print out a "warning:" when
|
|
# the resolved item matches the resolved embedded item. This not not really an issue that
|
|
# should rise to the level of a "warning" so we replace this message with a "status:"
|
|
#
|
|
function(copy_resolved_item_into_bundle resolved_item resolved_embedded_item)
|
|
if(WIN32)
|
|
# ignore case on Windows
|
|
string(TOLOWER "${resolved_item}" resolved_item_compare)
|
|
string(TOLOWER "${resolved_embedded_item}" resolved_embedded_item_compare)
|
|
else()
|
|
set(resolved_item_compare "${resolved_item}")
|
|
set(resolved_embedded_item_compare "${resolved_embedded_item}")
|
|
endif()
|
|
|
|
if("${resolved_item_compare}" STREQUAL "${resolved_embedded_item_compare}")
|
|
# this is our only change from the original version
|
|
message(STATUS "status: resolved_item == resolved_embedded_item - not copying...")
|
|
else()
|
|
#message(STATUS "copying COMMAND ${CMAKE_COMMAND} -E copy ${resolved_item} ${resolved_embedded_item}")
|
|
execute_process(COMMAND ${CMAKE_COMMAND} -E copy "${resolved_item}" "${resolved_embedded_item}")
|
|
if(UNIX AND NOT APPLE)
|
|
file(RPATH_REMOVE FILE "${resolved_embedded_item}")
|
|
endif()
|
|
endif()
|
|
endfunction()
|
|
|
|
message(STATUS "FIXUP_LIBS for fixup_bundle called for bundle ${BUNDLE_EXECUTABLE} are @FIXUP_LIBS@")
|
|
|
|
message(STATUS "Scanning for plugins from ${BUNDLE_PLUGIN_DIR}")
|
|
|
|
if (APPLE)
|
|
set(PLUGIN_EXTENSION "dylib")
|
|
elseif (WIN32)
|
|
set(PLUGIN_EXTENSION "dll")
|
|
else()
|
|
set(PLUGIN_EXTENSION "so")
|
|
endif()
|
|
|
|
file(GLOB RUNTIME_PLUGINS "${BUNDLE_PLUGIN_DIR}/*.${PLUGIN_EXTENSION}")
|
|
fixup_bundle("${BUNDLE_EXECUTABLE}" "${RUNTIME_PLUGINS}" "@FIXUP_LIBS@") |