Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ set (HAVE_CMAKE true)
project (timew)
include (CXXSniffer)
include (FindAsciidoctor)
include (CheckFunctionExists)

set (PROJECT_VERSION "1.9.0-dev")

Expand Down Expand Up @@ -45,6 +46,9 @@ endif (FREEBSD OR DRAGONFLY)
set (TIMEW_DOCDIR share/doc/timew CACHE STRING "Installation directory for doc files")
set (TIMEW_BINDIR bin CACHE STRING "Installation directory for Timewarrior executable")

check_function_exists(strlcpy HAVE_STRLCPY)
check_function_exists(timegm HAVE_TIMEGM)

message ("-- Configuring cmake.h")
configure_file (${CMAKE_SOURCE_DIR}/cmake.h.in
${CMAKE_SOURCE_DIR}/cmake.h)
Expand Down
2 changes: 1 addition & 1 deletion src/libshared
Submodule libshared updated 93 files
+2 −2 .github/workflows/cmake.yml
+8 −7 .gitignore
+1 −1 LICENSE
+1 −1 docker-compose.yml
+1 −1 src/Args.cpp
+1 −1 src/Args.h
+1 −1 src/Color.cpp
+1 −1 src/Color.h
+1 −1 src/Composite.cpp
+1 −1 src/Composite.h
+1 −1 src/Configuration.cpp
+1 −1 src/Configuration.h
+1 −1 src/Datetime.cpp
+3 −1 src/Datetime.h
+1 −1 src/Duration.cpp
+1 −1 src/Duration.h
+1 −1 src/FS.cpp
+1 −1 src/FS.h
+1 −1 src/JSON.cpp
+1 −1 src/JSON.h
+1 −1 src/Lexer.cpp
+1 −1 src/Lexer.h
+1 −1 src/Log.cpp
+1 −1 src/Log.h
+1 −1 src/Msg.cpp
+1 −1 src/Msg.h
+1 −1 src/PEG.cpp
+1 −1 src/PEG.h
+1 −1 src/Packrat.cpp
+1 −1 src/Packrat.h
+1 −1 src/Palette.cpp
+1 −1 src/Palette.h
+1 −1 src/Pig.cpp
+1 −1 src/Pig.h
+1 −1 src/RX.cpp
+1 −1 src/RX.h
+1 −1 src/SAX.cpp
+1 −1 src/Table.cpp
+1 −1 src/Table.h
+1 −1 src/Timer.cpp
+1 −1 src/Timer.h
+1 −1 src/Tree.cpp
+1 −1 src/Tree.h
+1 −1 src/format.cpp
+1 −1 src/format.h
+1 −1 src/ip.cpp
+1 −1 src/shared.cpp
+1 −1 src/shared.h
+1 −1 src/unicode.cpp
+1 −1 src/unicode.h
+1 −1 src/utf8.cpp
+1 −1 src/utf8.h
+1 −1 test/args.t.cpp
+1 −1 test/autocomplete.t.cpp
+1 −1 test/charliteral.t.cpp
+1 −1 test/color.t.cpp
+1 −1 test/composite.t.cpp
+1 −1 test/configuration.t.cpp
+1 −1 test/dates.t.cpp
+1 −1 test/datetime.t.cpp
+1 −1 test/docker/task.dockerfile
+1 −1 test/docker/timew.dockerfile
+1 −1 test/duration.t.cpp
+1 −1 test/external.t.cpp
+1 −1 test/format.t.cpp
+1 −1 test/fs.t.cpp
+1 −1 test/intrinsic.t.cpp
+1 −1 test/json.t.cpp
+1 −1 test/json_test.cpp
+1 −1 test/json_test.t
+1 −1 test/lexer.t.cpp
+1 −1 test/list.t.cpp
+1 −1 test/msg.t.cpp
+1 −1 test/negative.t.cpp
+1 −1 test/palette.t.cpp
+1 −1 test/peg.t.cpp
+1 −1 test/pig.t.cpp
+1 −1 test/plus.t.cpp
+1 −1 test/positive.t.cpp
+1 −1 test/question.t.cpp
+1 −1 test/rx.t.cpp
+1 −1 test/sax_test.cpp
+1 −1 test/shared.t.cpp
+1 −1 test/simpletap/__init__.py
+1 −1 test/star.t.cpp
+1 −1 test/stringliteral.t.cpp
+1 −1 test/table.t.cpp
+1 −1 test/test.cpp
+1 −1 test/test.h
+1 −1 test/timer.t.cpp
+1 −1 test/tree.t.cpp
+1 −1 test/unicode.t.cpp
+1 −1 test/utf8.t.cpp