cmake_minimum_required(VERSION 3.5)
project(HelloWorld CXX)
set(CMAKE_CXX_STANDARD 11)

add_subdirectory(third_party/tink)

add_executable(hello_world hello_world.cc)
target_link_libraries(hello_world tink::static)
