tvl-depot/fun/dt/CMakeLists.txt

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
277 B
CMake
Raw Normal View History

2020-05-08 19:55:00 +02:00
# -*- mode: cmake; -*-
cmake_minimum_required(VERSION 3.16)
project(dt)
add_executable(dt dt.cc)
find_package(absl REQUIRED)
target_link_libraries(dt
absl::flags
absl::flags_parse
absl::hash
absl::time
absl::strings
farmhash
)
install(TARGETS dt DESTINATION bin)