mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2025-01-11 05:19:50 +01:00
Added FileCache to the build.
This commit is contained in:
parent
663cd9d3a2
commit
3644840a8e
@ -8,6 +8,8 @@ sources = [
|
||||
|
||||
"register_types.cpp",
|
||||
|
||||
"file_cache.cpp",
|
||||
|
||||
"http/http_server_enums.cpp",
|
||||
"http/web_server_cookie.cpp",
|
||||
|
||||
|
@ -13,6 +13,7 @@ def get_doc_classes():
|
||||
return [
|
||||
#"WorldArea",
|
||||
|
||||
"FileCache",
|
||||
"HTTPServerEnums",
|
||||
"WebServerCookie",
|
||||
"HTMLBuilder",
|
||||
|
@ -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>();
|
||||
|
Loading…
Reference in New Issue
Block a user