Sign in
fuchsia
/
third_party
/
tink
/
refs/heads/upstream/1.3
/
.
/
examples
/
helloworld
/
cc
/
CMakeLists_for_CMakeBuildTest.txt
blob: d8a077893c3694a2f7ff86a6060c4421aaf24093 [
file
] [
log
] [
blame
] [
edit
]
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)