Irrlicht、GUI無しコンパイルオプションが追加される

Irrlicht SVN (SourceForge.net)

rev.809 bitplane 2007/07/26
Added IrrCompileConfig define to compile without GUI. 

//! Define _IRR_COMPILE_WITH_GUI_ to compile the engine with the built-in GUI
/** Disable this if you are using an external library to draw the GUI. If you disable this then
you will not be able to use anything provided by the GUI Environment, including loading fonts. */
#define _IRR_COMPILE_WITH_GUI_

なんと、コンパイルオプションにGUIを分離するdefineが登場しました。IrrlichtのGUIは物足りない!と思っている方は、このオプションを使ってIrrlichtを再コンパイルしてみては如何でしょう。サードパーティ製GUIだけを使うのであれば、余分なオフィシャルGUIを削ぎ落として、DLLをある程度スリムに出来ると思われます。

このコンパイルオプションは先日のSVNリポジトリにコミットされていました。公式に使えるようになるのは、次のIrrlicht Ver.1.4からになる予定です。

Share