mirror of
https://github.com/ton-blockchain/ton
synced 2025-03-09 15:40:10 +00:00
initial commit
This commit is contained in:
commit
c2da007f40
1610 changed files with 398047 additions and 0 deletions
22
blockchain-explorer/CMakeLists.txt
Normal file
22
blockchain-explorer/CMakeLists.txt
Normal file
|
@ -0,0 +1,22 @@
|
|||
cmake_minimum_required(VERSION 3.0.2 FATAL_ERROR)
|
||||
|
||||
|
||||
find_package(MHD)
|
||||
|
||||
if (MHD_FOUND)
|
||||
|
||||
set(BLOCHAIN_EXPLORER_SOURCE
|
||||
blockchain-explorer.cpp
|
||||
blockchain-explorer.hpp
|
||||
blockchain-explorer-http.cpp
|
||||
blockchain-explorer-http.hpp
|
||||
blockchain-explorer-query.cpp
|
||||
blockchain-explorer-query.hpp
|
||||
)
|
||||
|
||||
add_executable(blockchain-explorer ${BLOCHAIN_EXPLORER_SOURCE})
|
||||
target_include_directories(blockchain-explorer PUBLIC ${MHD_INCLUDE_DIRS})
|
||||
target_link_libraries(blockchain-explorer tdutils tdactor adnllite tl_lite_api tl-lite-utils
|
||||
ton_crypto ton_block ${MHD_LIBRARY})
|
||||
|
||||
endif()
|
Loading…
Add table
Add a link
Reference in a new issue