remove base64, add dns.cpp, add pthread to dns binary

pull/6/head
Ryan Tharp 6 years ago
parent 0decbe5613
commit 03fff240cd

@ -183,7 +183,6 @@ set(LIB_SRC
llarp/address_info.cpp
llarp/bencode.cpp
llarp/buffer.cpp
llarp/base64.cpp
llarp/config.cpp
llarp/context.cpp
llarp/crypto_async.cpp
@ -241,6 +240,7 @@ set(LIB_SRC
)
set(DNS_SRC
llarp/dns.cpp
llarp/dnsc.cpp
llarp/dnsd.cpp
llarp/net.cpp
@ -305,7 +305,7 @@ else()
target_link_libraries(${EXE} ${STATIC_LINK_LIBS} ${STATIC_LIB} libbackport-static libllarpplatform-static)
target_link_libraries(${CLIENT_EXE} ${STATIC_LINK_LIBS} ${STATIC_LIB} libbackport-static libllarpplatform-static)
target_link_libraries(rcutil ${STATIC_LINK_LIBS} ${STATIC_LIB} libbackport-static libllarpplatform-static)
target_link_libraries(dns libllarpplatform-static)
target_link_libraries(dns libllarpplatform-static pthread)
endif()
endif()
@ -318,7 +318,7 @@ else()
target_link_libraries(${EXE} ${SHARED_LIB} libbackport libllarpplatform)
target_link_libraries(${CLIENT_EXE} ${SHARED_LIB} libbackport libllarpplatform)
target_link_libraries(rcutil ${SHARED_LIB} libbackport libllarpplatform)
target_link_libraries(dns libllarpplatform)
target_link_libraries(dns libllarpplatform pthread)
endif()
endif()

Loading…
Cancel
Save