Added FileCache to the build.

This commit is contained in:
Relintai 2022-06-27 12:28:36 +02:00
parent 663cd9d3a2
commit 3644840a8e
3 changed files with 6 additions and 0 deletions

View File

@ -8,6 +8,8 @@ sources = [
"register_types.cpp",
"file_cache.cpp",
"http/http_server_enums.cpp",
"http/web_server_cookie.cpp",

View File

@ -13,6 +13,7 @@ def get_doc_classes():
return [
#"WorldArea",
"FileCache",
"HTTPServerEnums",
"WebServerCookie",
"HTMLBuilder",

View File

@ -24,6 +24,7 @@ SOFTWARE.
//#include "core/engine.h"
#include "file_cache.h"
#include "html/html_builder_bind.h"
#include "http/http_server_enums.h"
#include "http/web_server_cookie.h"
@ -31,6 +32,8 @@ SOFTWARE.
void register_web_types() {
ClassDB::register_class<HTTPServerEnums>();
ClassDB::register_class<FileCache>();
ClassDB::register_class<WebServerCookie>();
ClassDB::register_class<_HTMLBuilder>();