feat(fun/dt): Implement useful utility
This commit is contained in:
parent
28a36a2b70
commit
e33627f960
4 changed files with 97 additions and 0 deletions
16
fun/dt/CMakeLists.txt
Normal file
16
fun/dt/CMakeLists.txt
Normal file
|
@ -0,0 +1,16 @@
|
|||
# -*- 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)
|
Loading…
Add table
Add a link
Reference in a new issue