|
|
@ -1,34 +1,16 @@ |
|
|
|
cmake_policy(SET CMP0015 OLD) |
|
|
|
|
|
|
|
set(CMAKE_INCLUDE_CURRENT_DIR ON) |
|
|
|
aux_source_directory(. SRC_LIST) |
|
|
|
include_directories(..) |
|
|
|
include_directories(${JSON_RPC_CPP_INCLUDE_DIRS}) |
|
|
|
|
|
|
|
if (APPLE) |
|
|
|
# Add homebrew path for qt5 |
|
|
|
set(CMAKE_PREFIX_PATH /usr/local/opt/qt5) |
|
|
|
include_directories(/usr/local/opt/qt5/include /usr/local/include) |
|
|
|
elseif ("${TARGET_PLATFORM}" STREQUAL "w64") |
|
|
|
set(SRC_LIST ${SRC_LIST} ../windows/qt_plugin_import.cpp) |
|
|
|
include_directories(/usr/x86_64-w64-mingw32/include /usr/x86_64-w64-mingw32/include/QtCore /usr/x86_64-w64-mingw32/include/QtGui /usr/x86_64-w64-mingw32/include/QtQuick /usr/x86_64-w64-mingw32/include/QtQml /usr/x86_64-w64-mingw32/include/QtNetwork /usr/x86_64-w64-mingw32/include/QtWidgets /usr/x86_64-w64-mingw32/include/QtWebKit /usr/x86_64-w64-mingw32/include/QtWebKitWidgets) |
|
|
|
elseif (UNIX) |
|
|
|
set(CMAKE_PREFIX_PATH ${CMAKE_PREFIX_PATH} ";$ENV{QTDIR}/lib/cmake") |
|
|
|
endif () |
|
|
|
|
|
|
|
find_package(Qt5Core REQUIRED) |
|
|
|
find_package(Qt5Gui REQUIRED) |
|
|
|
find_package(Qt5Quick REQUIRED) |
|
|
|
find_package(Qt5Qml REQUIRED) |
|
|
|
find_package(Qt5Network REQUIRED) |
|
|
|
find_package(Qt5Widgets REQUIRED) |
|
|
|
find_package(Qt5WebKit REQUIRED) |
|
|
|
find_package(Qt5WebKitWidgets REQUIRED) |
|
|
|
|
|
|
|
qt5_wrap_ui(ui_Main.h Main.ui) |
|
|
|
|
|
|
|
# Set name of binary and add_executable() |
|
|
|
file(GLOB HEADERS "*.h") |
|
|
|
if (APPLE) |
|
|
|
set(EXECUTEABLE AlethZero) |
|
|
|
set(EXECUTABLE AlethZero) |
|
|
|
set(BIN_INSTALL_DIR ".") |
|
|
|
set(DOC_INSTALL_DIR ".") |
|
|
|
|
|
|
@ -39,34 +21,34 @@ if (APPLE) |
|
|
|
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 ${EXECUTEABLE}) |
|
|
|
set(MACOSX_BUNDLE_BUNDLE_NAME ${EXECUTABLE}) |
|
|
|
set(MACOSX_BUNDLE_ICON_FILE alethzero) |
|
|
|
include(BundleUtilities) |
|
|
|
|
|
|
|
add_executable(${EXECUTEABLE} MACOSX_BUNDLE alethzero.icns Main.ui ${SRC_LIST} ${HEADERS}) |
|
|
|
set_target_properties(${EXECUTEABLE} PROPERTIES MACOSX_BUNDLE_INFO_PLIST "${CMAKE_CURRENT_SOURCE_DIR}/EthereumMacOSXBundleInfo.plist.in") |
|
|
|
SET_SOURCE_FILES_PROPERTIES(${EXECUTEABLE} PROPERTIES MACOSX_PACKAGE_LOCATION MacOS) |
|
|
|
add_executable(${EXECUTABLE} MACOSX_BUNDLE alethzero.icns Main.ui ${SRC_LIST} ${HEADERS}) |
|
|
|
set_target_properties(${EXECUTABLE} PROPERTIES MACOSX_BUNDLE_INFO_PLIST "${CMAKE_CURRENT_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 () |
|
|
|
set(EXECUTEABLE alethzero) |
|
|
|
add_executable(${EXECUTEABLE} Main.ui ${SRC_LIST} ${HEADERS}) |
|
|
|
set(EXECUTABLE alethzero) |
|
|
|
add_executable(${EXECUTABLE} Main.ui ${SRC_LIST} ${HEADERS}) |
|
|
|
endif () |
|
|
|
|
|
|
|
qt5_use_modules(${EXECUTEABLE} Core)# Gui Widgets Network WebKit WebKitWidgets) |
|
|
|
target_link_libraries(${EXECUTEABLE} webthree qethereum ethereum evm ethcore devcrypto secp256k1 gmp serpent lll solidity evmcore devcore web3jsonrpc jsqrc ${JSONCPP_LIBRARIES}) |
|
|
|
qt5_use_modules(${EXECUTABLE} Core) |
|
|
|
target_link_libraries(${EXECUTABLE} webthree qethereum ethereum evm ethcore devcrypto secp256k1 gmp serpent lll solidity evmcore devcore web3jsonrpc jsqrc ${JSONCPP_LIBRARIES}) |
|
|
|
|
|
|
|
if (APPLE) |
|
|
|
# First have qt5 install plugins and frameworks |
|
|
|
add_custom_command(TARGET ${EXECUTEABLE} POST_BUILD |
|
|
|
COMMAND /usr/local/opt/qt5/bin/macdeployqt ${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_CFG_INTDIR}/${EXECUTEABLE}.app |
|
|
|
# replace CMAKE_PREFIX_PATH with QT_PATH ? |
|
|
|
add_custom_command(TARGET ${EXECUTABLE} POST_BUILD |
|
|
|
COMMAND ${CMAKE_PREFIX_PATH}/bin/macdeployqt ${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_CFG_INTDIR}/${EXECUTABLE}.app |
|
|
|
WORKING_DIRECTORY ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}) |
|
|
|
|
|
|
|
# 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}/${EXECUTEABLE}.app") |
|
|
|
set(APP_BUNDLE_PATH "${CMAKE_CURRENT_BINARY_DIR}/${EXECUTABLE}.app") |
|
|
|
else () |
|
|
|
set(APP_BUNDLE_PATH "${CMAKE_CURRENT_BINARY_DIR}/\$ENV{CONFIGURATION}/${EXECUTEABLE}.app") |
|
|
|
set(APP_BUNDLE_PATH "${CMAKE_CURRENT_BINARY_DIR}/\$ENV{CONFIGURATION}/${EXECUTABLE}.app") |
|
|
|
endif () |
|
|
|
install(CODE " |
|
|
|
include(BundleUtilities) |
|
|
@ -83,20 +65,17 @@ if (APPLE) |
|
|
|
elseif ("${TARGET_PLATFORM}" STREQUAL "w64") |
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fno-keep-inline-dllexport -static-libgcc -static-libstdc++ -static") |
|
|
|
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Wl,-s -Wl,-subsystem,windows -mthreads -L/usr/x86_64-w64-mingw32/plugins/platforms") |
|
|
|
target_link_libraries(${EXECUTEABLE} gcc) |
|
|
|
target_link_libraries(${EXECUTEABLE} mingw32 qtmain mswsock iphlpapi qwindows shlwapi Qt5PlatformSupport opengl32 gdi32 comdlg32 oleaut32 imm32 winmm ole32 uuid ws2_32) |
|
|
|
target_link_libraries(${EXECUTEABLE} boost_system-mt-s) |
|
|
|
target_link_libraries(${EXECUTEABLE} boost_filesystem-mt-s) |
|
|
|
target_link_libraries(${EXECUTEABLE} boost_thread_win32-mt-s) |
|
|
|
target_link_libraries(${EXECUTEABLE} crypt32) |
|
|
|
target_link_libraries(${EXECUTEABLE} Qt5PlatformSupport) |
|
|
|
target_link_libraries(${EXECUTABLE} gcc) |
|
|
|
target_link_libraries(${EXECUTABLE} mingw32 qtmain mswsock iphlpapi qwindows shlwapi Qt5PlatformSupport opengl32 gdi32 comdlg32 oleaut32 imm32 winmm ole32 uuid ws2_32) |
|
|
|
target_link_libraries(${EXECUTABLE} boost_system-mt-s) |
|
|
|
target_link_libraries(${EXECUTABLE} boost_filesystem-mt-s) |
|
|
|
target_link_libraries(${EXECUTABLE} boost_thread_win32-mt-s) |
|
|
|
target_link_libraries(${EXECUTABLE} crypt32) |
|
|
|
target_link_libraries(${EXECUTABLE} Qt5PlatformSupport) |
|
|
|
set(CMAKE_SHARED_LIBRARY_LINK_CXX_FLAGS) |
|
|
|
elseif (UNIX) |
|
|
|
|
|
|
|
else () |
|
|
|
target_link_libraries(${EXECUTEABLE} boost_system) |
|
|
|
target_link_libraries(${EXECUTEABLE} boost_filesystem) |
|
|
|
find_package(Threads REQUIRED) |
|
|
|
target_link_libraries(${EXECUTEABLE} ${CMAKE_THREAD_LIBS_INIT}) |
|
|
|
install( TARGETS ${EXECUTEABLE} RUNTIME DESTINATION bin ) |
|
|
|
message(STATUS "platform not supported") |
|
|
|
endif () |
|
|
|
|
|
|
|