You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
145 lines
4.6 KiB
145 lines
4.6 KiB
#
|
|
# this function requires the following variables to be specified:
|
|
# ETH_VERSION
|
|
# PROJECT_NAME
|
|
# PROJECT_VERSION
|
|
# PROJECT_COPYRIGHT_YEAR
|
|
# PROJECT_VENDOR
|
|
# PROJECT_DOMAIN_SECOND
|
|
# PROJECT_DOMAIN_FIRST
|
|
# SRC_LIST
|
|
# HEADERS
|
|
#
|
|
# params:
|
|
# ICON
|
|
#
|
|
|
|
macro(eth_add_executable EXECUTABLE)
|
|
set (extra_macro_args ${ARGN})
|
|
set (options)
|
|
set (one_value_args ICON)
|
|
set (multi_value_args UI_RESOURCES WIN_RESOURCES)
|
|
cmake_parse_arguments (ETH_ADD_EXECUTABLE "${options}" "${one_value_args}" "${multi_value_args}" "${extra_macro_args}")
|
|
|
|
if (APPLE)
|
|
|
|
add_executable(${EXECUTABLE} MACOSX_BUNDLE ${SRC_LIST} ${HEADERS} ${ETH_ADD_EXECUTABLE_UI_RESOURCES})
|
|
set(PROJECT_VERSION "${ETH_VERSION}")
|
|
set(MACOSX_BUNDLE_INFO_STRING "${PROJECT_NAME} ${PROJECT_VERSION}")
|
|
set(MACOSX_BUNDLE_BUNDLE_VERSION "${PROJECT_NAME} ${PROJECT_VERSION}")
|
|
set(MACOSX_BUNDLE_LONG_VERSION_STRING "${PROJECT_NAME} ${PROJECT_VERSION}")
|
|
set(MACOSX_BUNDLE_SHORT_VERSION_STRING "${PROJECT_VERSION}")
|
|
set(MACOSX_BUNDLE_COPYRIGHT "${PROJECT_COPYRIGHT_YEAR} ${PROJECT_VENDOR}")
|
|
set(MACOSX_BUNDLE_GUI_IDENTIFIER "${PROJECT_DOMAIN_SECOND}.${PROJECT_DOMAIN_FIRST}")
|
|
set(MACOSX_BUNDLE_BUNDLE_NAME ${EXECUTABLE})
|
|
set(MACOSX_BUNDLE_ICON_FILE ${ETH_ADD_EXECUTABLE_ICON})
|
|
set_target_properties(${EXECUTABLE} PROPERTIES MACOSX_BUNDLE_INFO_PLIST "${CMAKE_SOURCE_DIR}/EthereumMacOSXBundleInfo.plist.in")
|
|
set_source_files_properties(${EXECUTABLE} PROPERTIES MACOSX_PACKAGE_LOCATION MacOS)
|
|
set_source_files_properties(${MACOSX_BUNDLE_ICON_FILE}.icns PROPERTIES MACOSX_PACKAGE_LOCATION Resources)
|
|
|
|
else ()
|
|
add_executable(${EXECUTABLE} ${ETH_ADD_EXECUTABLE_UI_RESOURCES} ${ETH_ADD_EXECUTABLE_WIN_RESOURCES} ${SRC_LIST} ${HEADERS})
|
|
endif()
|
|
|
|
endmacro()
|
|
|
|
#
|
|
# this function requires the following variables to be specified:
|
|
# ETH_DEPENDENCY_INSTALL_DIR
|
|
#
|
|
# params:
|
|
# QMLDIR
|
|
#
|
|
|
|
macro(eth_install_executable EXECUTABLE)
|
|
|
|
set (extra_macro_args ${ARGN})
|
|
set (options)
|
|
set (one_value_args QMLDIR)
|
|
set (multi_value_args)
|
|
cmake_parse_arguments (ETH_INSTALL_EXECUTABLE "${options}" "${one_value_args}" "${multi_value_args}" "${extra_macro_args}")
|
|
|
|
if (ETH_INSTALL_EXECUTABLE_QMLDIR)
|
|
if (APPLE)
|
|
set(eth_qml_dir "-qmldir=${ETH_INSTALL_EXECUTABLE_QMLDIR}")
|
|
elseif (WIN32)
|
|
set(eth_qml_dir --qmldir ${ETH_INSTALL_EXECUTABLE_QMLDIR})
|
|
endif()
|
|
message(STATUS "${EXECUTABLE} qmldir: ${eth_qml_dir}")
|
|
endif()
|
|
|
|
if (APPLE)
|
|
# First have qt5 install plugins and frameworks
|
|
add_custom_command(TARGET ${EXECUTABLE} POST_BUILD
|
|
COMMAND ${MACDEPLOYQT_APP} ${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_CFG_INTDIR}/${EXECUTABLE}.app -executable=${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_CFG_INTDIR}/${EXECUTABLE}.app/Contents/MacOS/${EXECUTABLE} ${eth_qml_dir}
|
|
WORKING_DIRECTORY ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}
|
|
COMMAND sh ${CMAKE_SOURCE_DIR}/macdeployfix.sh ${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_CFG_INTDIR}/${EXECUTABLE}.app/Contents
|
|
)
|
|
|
|
# This tool and next will inspect linked libraries in order to determine which dependencies are required
|
|
if (${CMAKE_CFG_INTDIR} STREQUAL ".")
|
|
set(APP_BUNDLE_PATH "${CMAKE_CURRENT_BINARY_DIR}/${EXECUTABLE}.app")
|
|
else ()
|
|
set(APP_BUNDLE_PATH "${CMAKE_CURRENT_BINARY_DIR}/\$ENV{CONFIGURATION}/${EXECUTABLE}.app")
|
|
endif ()
|
|
|
|
install(CODE "
|
|
include(BundleUtilities)
|
|
set(BU_CHMOD_BUNDLE_ITEMS 1)
|
|
verify_app(\"${APP_BUNDLE_PATH}\")
|
|
" COMPONENT RUNTIME )
|
|
elseif ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "MSVC")
|
|
|
|
# copy all dlls to executable directory
|
|
# TODO improve that by copying only required dlls
|
|
file (GLOB DLLS ${ETH_DEPENDENCY_INSTALL_DIR}/bin/*.dll)
|
|
|
|
foreach(DLL ${DLLS})
|
|
add_custom_command(TARGET ${EXECUTABLE} POST_BUILD
|
|
COMMAND cmake -E copy "${DLL}" "$<TARGET_FILE_DIR:${EXECUTABLE}>"
|
|
)
|
|
endforeach()
|
|
|
|
add_custom_command(TARGET ${EXECUTABLE} POST_BUILD
|
|
COMMAND cmake -E copy_directory
|
|
"${ETH_DEPENDENCY_INSTALL_DIR}/plugins/platforms"
|
|
$<TARGET_FILE_DIR:${EXECUTABLE}>/platforms
|
|
)
|
|
|
|
# ugly way, improve that
|
|
add_custom_command(TARGET ${EXECUTABLE} POST_BUILD
|
|
COMMAND cmake -E copy_directory
|
|
"${ETH_DEPENDENCY_INSTALL_DIR}/qml"
|
|
$<TARGET_FILE_DIR:${EXECUTABLE}>
|
|
)
|
|
|
|
install( FILES ${DLLS}
|
|
DESTINATION bin
|
|
COMPONENT ${EXECUTABLE}
|
|
)
|
|
|
|
install( DIRECTORY ${ETH_DEPENDENCY_INSTALL_DIR}/plugins/platforms
|
|
DESTINATION bin
|
|
COMPONENT ${EXECUTABLE}
|
|
)
|
|
|
|
file (GLOB QMLS ${ETH_DEPENDENCY_INSTALL_DIR}/qml/*)
|
|
foreach(QML ${QMLS})
|
|
install( DIRECTORY ${QML}
|
|
DESTINATION bin
|
|
COMPONENT ${EXECUTABLE}
|
|
)
|
|
endforeach()
|
|
|
|
install( TARGETS ${EXECUTABLE} RUNTIME
|
|
DESTINATION bin
|
|
COMPONENT ${EXECUTABLE}
|
|
)
|
|
|
|
else()
|
|
install( TARGETS ${EXECUTABLE} RUNTIME DESTINATION bin)
|
|
endif ()
|
|
|
|
endmacro()
|
|
|
|
|
|
|