Organise files into a private subdir.
Move files that are not supposed to be used directly to get oro functionalities into a private subdirectory.
This commit is contained in:
parent
33fe2bc8cd
commit
7e48ee94c2
10 changed files with 7 additions and 7 deletions
|
@ -46,7 +46,7 @@ executable(meson.project_name(),
|
||||||
'ini_file.cpp',
|
'ini_file.cpp',
|
||||||
'oro/datatypes.cpp',
|
'oro/datatypes.cpp',
|
||||||
'oro/api.cpp',
|
'oro/api.cpp',
|
||||||
'oro/dateconv.cpp',
|
'oro/private/dateconv.cpp',
|
||||||
'oro/items.cpp',
|
'oro/items.cpp',
|
||||||
'oro/shops.cpp',
|
'oro/shops.cpp',
|
||||||
'evloop.cpp',
|
'evloop.cpp',
|
||||||
|
@ -57,8 +57,8 @@ executable(meson.project_name(),
|
||||||
'gnulib/lib/base64.c',
|
'gnulib/lib/base64.c',
|
||||||
'base64.cpp',
|
'base64.cpp',
|
||||||
'app_config.cpp',
|
'app_config.cpp',
|
||||||
'oro/tiger.c',
|
'oro/private/tiger.c',
|
||||||
'oro/tiger.cpp',
|
'oro/private/tiger.cpp',
|
||||||
project_config_file,
|
project_config_file,
|
||||||
install: true,
|
install: true,
|
||||||
dependencies: lib_deps,
|
dependencies: lib_deps,
|
||||||
|
|
|
@ -17,7 +17,7 @@
|
||||||
|
|
||||||
#include "api.hpp"
|
#include "api.hpp"
|
||||||
#include "datatypes.hpp"
|
#include "datatypes.hpp"
|
||||||
#include "dateconv.hpp"
|
#include "private/dateconv.hpp"
|
||||||
#include <restc-cpp/restc-cpp.h>
|
#include <restc-cpp/restc-cpp.h>
|
||||||
#include <restc-cpp/RequestBuilder.h>
|
#include <restc-cpp/RequestBuilder.h>
|
||||||
#include <boost/fusion/adapted.hpp>
|
#include <boost/fusion/adapted.hpp>
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "datatypes.hpp"
|
#include "datatypes.hpp"
|
||||||
#include "dateconv.hpp"
|
#include "private/dateconv.hpp"
|
||||||
|
|
||||||
#define HAS_UNCAUGHT_EXCEPTIONS 1
|
#define HAS_UNCAUGHT_EXCEPTIONS 1
|
||||||
#include "date/date.h"
|
#include "date/date.h"
|
||||||
|
|
|
@ -24,7 +24,7 @@
|
||||||
#include "oro/icons.hpp"
|
#include "oro/icons.hpp"
|
||||||
#include "oro/shops.hpp"
|
#include "oro/shops.hpp"
|
||||||
#include "oro/creators.hpp"
|
#include "oro/creators.hpp"
|
||||||
#include "oro/dateconv.hpp"
|
#include "oro/private/dateconv.hpp"
|
||||||
#include <mutex>
|
#include <mutex>
|
||||||
#include <optional>
|
#include <optional>
|
||||||
#include <type_traits>
|
#include <type_traits>
|
||||||
|
|
|
@ -17,7 +17,7 @@
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "datatypes.hpp"
|
#include "oro/datatypes.hpp"
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
||||||
namespace oro {
|
namespace oro {
|
Loading…
Add table
Reference in a new issue