From f4706d21d29ace89894d58e7516483c0763a0fd6 Mon Sep 17 00:00:00 2001 From: Francesco Date: Fri, 12 Sep 2025 02:40:05 +0200 Subject: [PATCH] refactor(build): remove comments --- meson.build | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/meson.build b/meson.build index bd49d26..ad98ed3 100644 --- a/meson.build +++ b/meson.build @@ -11,8 +11,8 @@ json_c_dep = dependency('json-c') deps = [curl_dep, json_c_dep] install_headers('include/tgbot.h') -#install_subdir('.', install_dir: 'C:/tgbot') -lib = library( + +tgbot_lib = library( 'tgbot', sources, dependencies: deps, @@ -21,11 +21,10 @@ lib = library( ) # Example (windows) -#lib_inc_dir = include_directories('C:/include') executable( 'example', 'examples/echobot/echobot.c', dependencies: deps, - link_with: lib, + link_with: tgbot_lib, include_directories: inc_dir, -) \ No newline at end of file +)