mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-04-05 21:02:26 +02:00
77 lines
2.6 KiB
CMake
77 lines
2.6 KiB
CMake
#
|
|
# Created by Brad Hefta-Gaub on 2016/07/07
|
|
# Copyright 2016 High Fidelity, Inc.
|
|
#
|
|
# Distributed under the Apache License, Version 2.0.
|
|
# See the accompanying file LICENSE or http:#www.apache.org/licenses/LICENSE-2.0.html
|
|
#
|
|
macro(SETUP_HIFI_CLIENT_SERVER_PLUGIN)
|
|
set(${TARGET_NAME}_SHARED 1)
|
|
set(PLUGIN_SUBFOLDER ${ARGN})
|
|
setup_hifi_library()
|
|
|
|
if (BUILD_CLIENT)
|
|
if (APPLE)
|
|
add_dependencies(Overte ${TARGET_NAME})
|
|
else()
|
|
add_dependencies(interface ${TARGET_NAME})
|
|
endif()
|
|
endif()
|
|
|
|
if (BUILD_SERVER)
|
|
add_dependencies(assignment-client ${TARGET_NAME})
|
|
endif()
|
|
|
|
set_target_properties(${TARGET_NAME} PROPERTIES FOLDER "Plugins")
|
|
|
|
if (APPLE)
|
|
set(CLIENT_PLUGIN_PATH "${INTERFACE_BUNDLE_NAME}.app/Contents/PlugIns")
|
|
set(SERVER_PLUGIN_PATH "plugins")
|
|
else()
|
|
set(CLIENT_PLUGIN_PATH "plugins")
|
|
set(SERVER_PLUGIN_PATH "plugins")
|
|
endif()
|
|
|
|
if (PLUGIN_SUBFOLDER)
|
|
set(CLIENT_PLUGIN_PATH "${CLIENT_PLUGIN_PATH}/${PLUGIN_SUBFOLDER}")
|
|
set(SERVER_PLUGIN_PATH "${SERVER_PLUGIN_PATH}/${PLUGIN_SUBFOLDER}")
|
|
endif()
|
|
|
|
if (CMAKE_SYSTEM_NAME MATCHES "Linux" OR CMAKE_GENERATOR STREQUAL "Unix Makefiles")
|
|
set(CLIENT_PLUGIN_FULL_PATH "${CMAKE_BINARY_DIR}/interface/${CLIENT_PLUGIN_PATH}/")
|
|
set(SERVER_PLUGIN_FULL_PATH "${CMAKE_BINARY_DIR}/assignment-client/${SERVER_PLUGIN_PATH}/")
|
|
elseif (APPLE)
|
|
set(CLIENT_PLUGIN_FULL_PATH "${CMAKE_BINARY_DIR}/interface/$<CONFIGURATION>/${CLIENT_PLUGIN_PATH}/")
|
|
set(SERVER_PLUGIN_FULL_PATH "${CMAKE_BINARY_DIR}/assignment-client/$<CONFIGURATION>/${SERVER_PLUGIN_PATH}/")
|
|
else()
|
|
set(CLIENT_PLUGIN_FULL_PATH "${CMAKE_BINARY_DIR}/interface/$<CONFIGURATION>/${CLIENT_PLUGIN_PATH}/")
|
|
set(SERVER_PLUGIN_FULL_PATH "${CMAKE_BINARY_DIR}/assignment-client/$<CONFIGURATION>/${SERVER_PLUGIN_PATH}/")
|
|
endif()
|
|
|
|
# create the destination for the client plugin binaries
|
|
add_custom_command(
|
|
TARGET ${TARGET_NAME} POST_BUILD
|
|
COMMAND "${CMAKE_COMMAND}" -E make_directory
|
|
${CLIENT_PLUGIN_FULL_PATH}
|
|
)
|
|
# copy the client plugin binaries
|
|
add_custom_command(TARGET ${TARGET_NAME} POST_BUILD
|
|
COMMAND "${CMAKE_COMMAND}" -E copy
|
|
"$<TARGET_FILE:${TARGET_NAME}>"
|
|
${CLIENT_PLUGIN_FULL_PATH}
|
|
)
|
|
|
|
# create the destination for the server plugin binaries
|
|
add_custom_command(
|
|
TARGET ${TARGET_NAME} POST_BUILD
|
|
COMMAND "${CMAKE_COMMAND}" -E make_directory
|
|
${SERVER_PLUGIN_FULL_PATH}
|
|
)
|
|
# copy the server plugin binaries
|
|
add_custom_command(TARGET ${TARGET_NAME} POST_BUILD
|
|
COMMAND "${CMAKE_COMMAND}" -E copy
|
|
"$<TARGET_FILE:${TARGET_NAME}>"
|
|
${SERVER_PLUGIN_FULL_PATH}
|
|
)
|
|
|
|
endmacro()
|