cmake_minimum_required(VERSION 3.6)
project(pocohttptest)

set(CMAKE_CXX_STANDARD 14)

add_executable(pocohttptest main.cpp)

target_link_libraries(pocohttptest PocoFoundation PocoNet PocoNetSSL PocoCrypto)

install(TARGETS pocohttptest RUNTIME DESTINATION bin)
