diff --git a/code/nel/tools/3d/CMakeLists.txt b/code/nel/tools/3d/CMakeLists.txt
index 08fd9e776..683f2589a 100644
--- a/code/nel/tools/3d/CMakeLists.txt
+++ b/code/nel/tools/3d/CMakeLists.txt
@@ -34,6 +34,7 @@ IF(WITH_NEL_TOOLS)
ENDIF()
SUBDIRS(
build_interface
+ unbuild_interface
get_neighbors
textures_optimizer
textures_tool
diff --git a/code/nel/tools/3d/unbuild_interface/CMakeLists.txt b/code/nel/tools/3d/unbuild_interface/CMakeLists.txt
new file mode 100644
index 000000000..2a10976d3
--- /dev/null
+++ b/code/nel/tools/3d/unbuild_interface/CMakeLists.txt
@@ -0,0 +1,11 @@
+FILE(GLOB SRC *.cpp *.h)
+
+SOURCE_GROUP("" FILES ${SRC})
+
+ADD_EXECUTABLE(unbuild_interface ${SRC})
+
+TARGET_LINK_LIBRARIES(unbuild_interface nelmisc)
+NL_DEFAULT_PROPS(unbuild_interface "NeL, Tools, 3D: unbuild_interface")
+NL_ADD_RUNTIME_FLAGS(unbuild_interface)
+
+INSTALL(TARGETS unbuild_interface RUNTIME DESTINATION bin COMPONENT tools3d)
diff --git a/code/nel/tools/3d/unbuild_interface/unbuild_interface.cpp b/code/nel/tools/3d/unbuild_interface/unbuild_interface.cpp
new file mode 100644
index 000000000..48443cae7
--- /dev/null
+++ b/code/nel/tools/3d/unbuild_interface/unbuild_interface.cpp
@@ -0,0 +1,155 @@
+/**
+ * \file unbuild_interface.cpp
+ * \brief Unbuild Interface
+ * \date 2009-03-14 13:25GMT
+ * \author Jan Boon (Kaetemi)
+ * Unbuild Interface
+ */
+
+/*
+ * Copyright (C) 2009 by authors
+ *
+ * This file is part of NEVRAX NEL.
+ * NEVRAX NEL is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published
+ * by the Free Software Foundation, either version 2 of the License,
+ * or (at your option) any later version.
+ *
+ * NEVRAX NEL is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with NEVRAX NEL; see the file COPYING. If not, see
+ * .
+ */
+
+#include
+
+// STL includes
+#include
+#include
+#include