Hotfix: Build executables by default

Building executables by default was disabled by recent changes to main CMakeLists.txt
This commit is contained in:
serkixenos 2020-10-31 00:23:55 +01:00 committed by GitHub
parent 009658efe5
commit a73eb4caf8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,5 +1,5 @@
add_subdirectory( build_helpers )
if( BUILD_BITSHARES_PROGRAMS )
if( BUILD_PEERPLAYS_PROGRAMS )
add_subdirectory( cli_wallet )
add_subdirectory( genesis_util )
add_subdirectory( witness_node )
@ -7,4 +7,4 @@ if( BUILD_BITSHARES_PROGRAMS )
add_subdirectory( delayed_node )
add_subdirectory( js_operation_serializer )
add_subdirectory( size_checker )
endif( BUILD_BITSHARES_PROGRAMS )
endif( BUILD_PEERPLAYS_PROGRAMS )