mirror of
				https://github.com/ton-blockchain/ton
				synced 2025-03-09 15:40:10 +00:00 
			
		
		
		
	- rldp-http-proxy used TONLib to resolve domains via DNS smartcontract - updated tonlib - bugfixes
		
			
				
	
	
		
			21 lines
		
	
	
	
		
			763 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
	
		
			763 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
| cmake_minimum_required(VERSION 3.0.2 FATAL_ERROR)
 | |
| 
 | |
| if (NOT OPENSSL_FOUND)
 | |
|   find_package(OpenSSL REQUIRED)
 | |
| endif()
 | |
| 
 | |
| add_executable(generate-random-id generate-random-id.cpp )
 | |
| target_link_libraries(generate-random-id tl_api ton_crypto keys adnl)
 | |
| 
 | |
| target_include_directories(generate-random-id PUBLIC
 | |
|   $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>/..)
 | |
| 
 | |
| add_executable(json2tlo json2tlo.cpp )
 | |
| target_link_libraries(json2tlo tl_api ton_crypto keys )
 | |
| target_include_directories(json2tlo PUBLIC
 | |
|   $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>/..)
 | |
| 
 | |
| add_executable(pack-viewer pack-viewer.cpp )
 | |
| target_link_libraries(pack-viewer tl_api ton_crypto keys validator tddb )
 | |
| target_include_directories(pack-viewer PUBLIC
 | |
|   $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>/..)
 |