From 002f27de1f04f3154065ed529f375a27468989c9 Mon Sep 17 00:00:00 2001 From: King_DuckZ Date: Sat, 20 Jun 2020 00:11:06 +0200 Subject: [PATCH] Not using boost in the end Although the dependency is still there because of restc-cpp --- main.cpp | 3 --- meson.build | 3 +-- 2 files changed, 1 insertion(+), 5 deletions(-) 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, )