From 309208d359eb1e83a3f8c02bc12cca2e63f0f898 Mon Sep 17 00:00:00 2001 From: Relintai Date: Sat, 5 Feb 2022 15:47:28 +0100 Subject: [PATCH] Rename the web's library. --- web/SCsub | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/SCsub b/web/SCsub index 61d230b..c6c64b1 100644 --- a/web/SCsub +++ b/web/SCsub @@ -9,5 +9,5 @@ env.add_source_files(env.core_sources, "./html/*.cpp") env.add_source_files(env.core_sources, "./http/*.cpp") # Build it all as a library -lib = env.add_library("core", env.core_sources) +lib = env.add_library("web", env.core_sources) env.Prepend(LIBS=[lib])