diff --git a/main.cpp b/main.cpp index 9833917..a7b8337 100644 --- a/main.cpp +++ b/main.cpp @@ -2,15 +2,12 @@ #include #include -#include #include -//#include #include #include #include "date/date.h" namespace rc = restc_cpp; -namespace lt = boost::local_time; namespace oro { typedef date::sys_time timestamp_t; diff --git a/meson.build b/meson.build index 4a510ff..b0df4b9 100644 --- a/meson.build +++ b/meson.build @@ -11,13 +11,12 @@ restc_cpp_dep = dependency('restc-cpp', version: '>=0.1.1', 'restc_cpp_with_unit_tests=false', ], ) -boost_dep = dependency('Boost', modules: ['date_time']) date_incdir = include_directories('subprojects/date/include') executable(meson.project_name(), 'main.cpp', install: true, - dependencies: [restc_cpp_dep, boost_dep], + dependencies: [restc_cpp_dep], include_directories: date_incdir, )