This repository has been archived by the owner on Oct 4, 2019. It is now read-only.
forked from steemit/steem
-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Major code formatting changes applied.
Struct discussion_query extended by select_metadata_tags and select_tags sets which participate in tags selection by functions: get_discussions_by_trending get_discussions_by_promoted get_discussions_by_trending30 get_discussions_by_created get_discussions_by_active get_discussions_by_cashout get_discussions_by_votes get_discussions_by_children get_discussions_by_hot Functions such as: get_discussions_by_blog get_discussions_by_feed behaves exactly as seen in hardfork 16.3
- Loading branch information
1 parent
43629bd
commit 1af0f6e
Showing
217 changed files
with
88,022 additions
and
86,151 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
add_subdirectory( fc ) | ||
add_subdirectory( db ) | ||
add_subdirectory( deterministic_openssl_rand ) | ||
add_subdirectory( chain ) | ||
add_subdirectory( net ) | ||
add_subdirectory(fc) | ||
add_subdirectory(db) | ||
add_subdirectory(deterministic_openssl_rand) | ||
add_subdirectory(chain) | ||
add_subdirectory(net) | ||
#add_subdirectory( p2p ) | ||
add_subdirectory( time ) | ||
add_subdirectory( utilities ) | ||
add_subdirectory( app ) | ||
add_subdirectory( plugins ) | ||
add_subdirectory( wallet ) | ||
add_subdirectory( manifest ) | ||
add_subdirectory(time) | ||
add_subdirectory(utilities) | ||
add_subdirectory(app) | ||
add_subdirectory(plugins) | ||
add_subdirectory(wallet) | ||
add_subdirectory(manifest) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,27 @@ | ||
file(GLOB HEADERS "include/steemit/app/*.hpp") | ||
|
||
add_library( steemit_app | ||
database_api.cpp | ||
api.cpp | ||
application.cpp | ||
impacted.cpp | ||
plugin.cpp | ||
${HEADERS} | ||
) | ||
add_library(steemit_app | ||
database_api.cpp | ||
api.cpp | ||
application.cpp | ||
impacted.cpp | ||
plugin.cpp | ||
${HEADERS} | ||
) | ||
|
||
target_link_libraries( steemit_app steemit_chain steemit_tags steemit_follow steemit_mf_plugins fc graphene_db graphene_net graphene_time graphene_utilities ) | ||
target_include_directories( steemit_app | ||
PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/include" ) | ||
target_link_libraries(steemit_app steemit_chain steemit_tags steemit_follow steemit_mf_plugins fc graphene_db graphene_net graphene_time graphene_utilities) | ||
target_include_directories(steemit_app | ||
PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/include") | ||
|
||
if(MSVC) | ||
set_source_files_properties( application.cpp api.cpp database_api.cpp PROPERTIES COMPILE_FLAGS "/bigobj" ) | ||
set_source_files_properties(application.cpp api.cpp database_api.cpp PROPERTIES COMPILE_FLAGS "/bigobj") | ||
endif(MSVC) | ||
|
||
INSTALL( TARGETS | ||
steemit_app | ||
install(TARGETS | ||
steemit_app | ||
|
||
RUNTIME DESTINATION bin | ||
LIBRARY DESTINATION lib | ||
ARCHIVE DESTINATION lib | ||
) | ||
INSTALL( FILES ${HEADERS} DESTINATION "include/steemit/app" ) | ||
RUNTIME DESTINATION bin | ||
LIBRARY DESTINATION lib | ||
ARCHIVE DESTINATION lib | ||
) | ||
install(FILES ${HEADERS} DESTINATION "include/steemit/app") |
Oops, something went wrong.