lib/utils: update library paths
This commit is contained in:
@ -33,14 +33,14 @@ lib_mu_utils=static_library('mu-utils', [
|
||||
readline_dep,
|
||||
cld2_dep
|
||||
], include_directories:
|
||||
include_directories(['.','..']),
|
||||
include_directories(['.','..', '../thirdparty/']),
|
||||
install: false)
|
||||
|
||||
lib_mu_utils_dep = declare_dependency(
|
||||
link_with: lib_mu_utils,
|
||||
compile_args: '-DFMT_HEADER_ONLY',
|
||||
include_directories:
|
||||
include_directories(['.', '..', '../thirdparty/fmt'])
|
||||
include_directories(['.', '..', '../thirdparty'])
|
||||
)
|
||||
|
||||
#
|
||||
@ -80,5 +80,6 @@ test('test-lang-detector',
|
||||
executable('test-lang-detector', 'mu-lang-detector.cc',
|
||||
install: false,
|
||||
cpp_args: ['-DBUILD_TESTS'],
|
||||
dependencies: [ config_h_dep, glib_dep, lib_mu_utils_dep ]))
|
||||
|
||||
subdir('tests')
|
||||
|
||||
@ -20,7 +20,7 @@
|
||||
#ifndef MU_OPTION__
|
||||
#define MU_OPTION__
|
||||
|
||||
#include "thirdparty/optional.hpp"
|
||||
#include <tl/optional.hpp>
|
||||
#include <string>
|
||||
|
||||
namespace Mu {
|
||||
|
||||
@ -20,7 +20,7 @@
|
||||
#ifndef MU_RESULT_HH__
|
||||
#define MU_RESULT_HH__
|
||||
|
||||
#include "thirdparty/expected.hpp"
|
||||
#include <tl/expected.hpp>
|
||||
#include "utils/mu-error.hh"
|
||||
|
||||
namespace Mu {
|
||||
|
||||
Reference in New Issue
Block a user