1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-18 14:21:41 +00:00

PCKPacker: moved from tools into core, fixes #4129

(cherry picked from commit b1fba2e013)
This commit is contained in:
J08nY
2016-10-01 22:04:10 +02:00
committed by Rémi Verschelde
parent ef0bcc7e20
commit f315d352ec
6 changed files with 3 additions and 8 deletions

View File

@@ -48,6 +48,7 @@
#include "os/input.h"
#include "core/io/xml_parser.h"
#include "io/http_client.h"
#include "io/pck_packer.h"
#include "packed_data_container.h"
#include "func_ref.h"
#include "input_map.h"
@@ -144,6 +145,8 @@ void register_core_types() {
ObjectTypeDB::register_type<ConfigFile>();
ObjectTypeDB::register_type<PCKPacker>();
ObjectTypeDB::register_type<PackedDataContainer>();
ObjectTypeDB::register_virtual_type<PackedDataContainerRef>();

View File

@@ -57,7 +57,6 @@
#include "tools/editor/editor_node.h"
#include "tools/editor/project_manager.h"
#include "tools/pck/pck_packer.h"
#endif
#include "io/file_access_network.h"
@@ -995,7 +994,6 @@ Error Main::setup2() {
}
#ifdef TOOLS_ENABLED
EditorNode::register_editor_types();
ObjectTypeDB::register_type<PCKPacker>(); // todo: move somewhere else
#endif
MAIN_PRINT("Main: Load Scripts, Modules, Drivers");
@@ -1747,4 +1745,3 @@ void Main::cleanup() {
}

View File

@@ -117,7 +117,6 @@ if (env["tools"]!="no"):
SConscript('editor/SCsub');
SConscript('collada/SCsub');
SConscript('doc/SCsub')
SConscript('pck/SCsub')
lib = env.Library("tool",env.tool_sources)

View File

@@ -1,4 +0,0 @@
Import('env')
if env["tools"] == "yes":
env.add_source_files(env.tool_sources, "*.cpp")