It's libkiwix, not kiwixlib

This commit is contained in:
Emmanuel Engelhart 2022-09-11 16:05:25 +02:00
parent cd56277123
commit 1062bd73a3
No known key found for this signature in database
GPG Key ID: 120B30D020B553D3
8 changed files with 8 additions and 8 deletions

View File

@ -45,7 +45,7 @@ config_h = configure_file(output : 'kiwix_config.h',
input : 'config.h.in') input : 'config.h.in')
install_headers(config_h, subdir:'kiwix') install_headers(config_h, subdir:'kiwix')
kiwixlib = library('kiwix', libkiwix = library('kiwix',
kiwix_sources, kiwix_sources,
include_directories : inc, include_directories : inc,
dependencies : all_deps, dependencies : all_deps,

View File

@ -20,7 +20,7 @@
#include "opds_dumper.h" #include "opds_dumper.h"
#include "book.h" #include "book.h"
#include "kiwixlib-resources.h" #include "libkiwix-resources.h"
#include <mustache.hpp> #include <mustache.hpp>
#include "tools/stringTools.h" #include "tools/stringTools.h"

View File

@ -29,7 +29,7 @@
#include <zim/search.h> #include <zim/search.h>
#include <mustache.hpp> #include <mustache.hpp>
#include "kiwixlib-resources.h" #include "libkiwix-resources.h"
#include "tools/stringTools.h" #include "tools/stringTools.h"
namespace kiwix namespace kiwix

View File

@ -68,7 +68,7 @@ extern "C" {
#include <vector> #include <vector>
#include <chrono> #include <chrono>
#include <fstream> #include <fstream>
#include "kiwixlib-resources.h" #include "libkiwix-resources.h"
#ifndef _WIN32 #ifndef _WIN32
# include <arpa/inet.h> # include <arpa/inet.h>

View File

@ -24,7 +24,7 @@
#include "request_context.h" #include "request_context.h"
#include "response.h" #include "response.h"
#include "tools/otherTools.h" #include "tools/otherTools.h"
#include "kiwixlib-resources.h" #include "libkiwix-resources.h"
#include <mustache.hpp> #include <mustache.hpp>

View File

@ -20,7 +20,7 @@
#include "response.h" #include "response.h"
#include "request_context.h" #include "request_context.h"
#include "internalServer.h" #include "internalServer.h"
#include "kiwixlib-resources.h" #include "libkiwix-resources.h"
#include "tools/regexTools.h" #include "tools/regexTools.h"
#include "tools/stringTools.h" #include "tools/stringTools.h"

View File

@ -15,7 +15,7 @@ preprocessed_resources = custom_target('preprocessed_resource_files',
lib_resources = custom_target('resources', lib_resources = custom_target('resources',
input: preprocessed_resources, input: preprocessed_resources,
output: ['kiwixlib-resources.cpp', 'kiwixlib-resources.h'], output: ['libkiwix-resources.cpp', 'libkiwix-resources.h'],
command:[res_compiler, command:[res_compiler,
'--cxxfile', '@OUTPUT0@', '--cxxfile', '@OUTPUT0@',
'--hfile', '@OUTPUT1@', '--hfile', '@OUTPUT1@',

View File

@ -69,7 +69,7 @@ if gtest_dep.found() and not meson.is_cross_build()
test_exe = executable(test_name, [test_name+'.cpp'], test_exe = executable(test_name, [test_name+'.cpp'],
implicit_include_directories: false, implicit_include_directories: false,
include_directories : inc, include_directories : inc,
link_with : kiwixlib, link_with : libkiwix,
link_args: extra_link_args, link_args: extra_link_args,
dependencies : all_deps + [gtest_dep], dependencies : all_deps + [gtest_dep],
build_rpath : '$ORIGIN') build_rpath : '$ORIGIN')