Skip to content

Commit

Permalink
Add timestamp to output VCF header
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Cooke committed Feb 26, 2021
1 parent 44c9c58 commit 36ca0b9
Show file tree
Hide file tree
Showing 9 changed files with 15,146 additions and 7 deletions.
3 changes: 2 additions & 1 deletion lib/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
add_subdirectory(tandem)
add_subdirectory(ranger)
add_subdirectory(ranger)
add_subdirectory(date)
20 changes: 20 additions & 0 deletions lib/date/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
set(DATE_SOURCES
date.h
tz.h
tz.cpp
tz_private.h
ios.h)

add_library(date-tz STATIC ${DATE_SOURCES})

set(WarningIgnores
-Wno-unused-parameter
-Wno-unused-function
-Wno-missing-braces)

add_compile_options(-Wall -Wextra -Werror ${WarningIgnores})

find_package(CURL REQUIRED)
target_include_directories(date-tz SYSTEM PRIVATE ${CURL_INCLUDE_DIRS})
target_link_libraries(date-tz PRIVATE ${CURL_LIBRARIES})

0 comments on commit 36ca0b9

Please sign in to comment.