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.
17 lines
410 B
17 lines
410 B
cmake_policy(SET CMP0015 NEW)
|
|
|
|
set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
|
aux_source_directory(. SRC_LIST)
|
|
|
|
include_directories(..)
|
|
link_directories(../libethereum)
|
|
|
|
find_package(Qt5Widgets REQUIRED)
|
|
|
|
add_executable(alethzero Main.ui ${SRC_LIST})
|
|
qt5_wrap_ui(ui_Main.h Main.ui)
|
|
|
|
qt5_use_modules(alethzero Widgets Network )
|
|
target_link_libraries(alethzero ethereum)
|
|
|
|
install( TARGETS alethzero RUNTIME DESTINATION bin )
|
|
|