move lib/thirdparty to thirdparty/

This commit is contained in:
Dirk-Jan C. Binnema 2023-08-30 23:02:52 +03:00
parent 3f8381134e
commit 77a8a67f6c
19 changed files with 4 additions and 3 deletions

View File

@ -15,6 +15,8 @@
## Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. ## Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
thirdparty=join_paths('..', '..', 'thirdparty')
lib_mu_utils=static_library('mu-utils', [ lib_mu_utils=static_library('mu-utils', [
'mu-command-handler.cc', 'mu-command-handler.cc',
'mu-html-to-text.cc', 'mu-html-to-text.cc',
@ -34,15 +36,14 @@ lib_mu_utils=static_library('mu-utils', [
readline_dep, readline_dep,
cld2_dep cld2_dep
], include_directories: ], include_directories:
include_directories(['.','..', '../thirdparty/']), include_directories(['.', '..', thirdparty]),
install: false) install: false)
lib_mu_utils_dep = declare_dependency( lib_mu_utils_dep = declare_dependency(
link_with: lib_mu_utils, link_with: lib_mu_utils,
compile_args: '-DFMT_HEADER_ONLY', compile_args: '-DFMT_HEADER_ONLY',
include_directories: include_directories:
include_directories(['.', '..', '../thirdparty']) include_directories(['.', '..', thirdparty]))
)
# #
# tools # tools