peerplays_migrated/programs/CMakeLists.txt

16 lines
484 B
CMake
Raw Normal View History

2015-06-08 15:50:35 +00:00
add_subdirectory( cli_wallet )
add_subdirectory( genesis_util )
2015-06-08 15:50:35 +00:00
add_subdirectory( witness_node )
add_subdirectory( delayed_node )
2015-06-08 15:50:35 +00:00
add_subdirectory( js_operation_serializer )
add_subdirectory( size_checker )
2015-07-10 21:37:22 +00:00
set(BUILD_QT_GUI FALSE CACHE BOOL "Build the Qt-based light client GUI")
if(BUILD_QT_GUI)
2015-08-26 22:01:48 +00:00
# add_subdirectory(light_client)
2015-07-10 21:37:22 +00:00
endif()
set(BUILD_WEB_NODE FALSE CACHE BOOL "Build the Qt-based full node with web GUI")
if(BUILD_WEB_NODE)
add_subdirectory(full_web_node)
endif()