diff options
author | Juan Linietsky <reduzio@gmail.com> | 2015-11-19 00:08:47 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2015-11-19 00:08:47 -0300 |
commit | 0168947084af1991a2af978956e823afb7b17d33 (patch) | |
tree | 90cf698b22105ecb62f3a8c5d127a63928c475ef /drivers | |
parent | ea035f308b178ebead3239ae6fd92a4fe5592950 (diff) | |
parent | 69fa5ed1c083c8e8bdef9833a37b448ad526c1e4 (diff) |
Merge pull request #2518 from masoudbh3/godot-icons
Add icon to exe file in windows export
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/register_driver_types.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/drivers/register_driver_types.cpp b/drivers/register_driver_types.cpp index 2647d23011..c4ab54d102 100644 --- a/drivers/register_driver_types.cpp +++ b/drivers/register_driver_types.cpp @@ -29,6 +29,11 @@ #include "convex_decomp/b2d_decompose.h" #endif +#ifdef TOOLS_ENABLED +#include "pe_bliss/pe_bliss_godot.h" +#include "platform/windows/export/export.h" +#endif + #ifdef TREMOR_ENABLED #include "teora/audio_stream_ogg.h" #endif @@ -246,7 +251,7 @@ void register_driver_types() { #ifdef ETC1_ENABLED _register_etc1_compress_func(); #endif - + initialize_chibi(); } |