It's now possible to build each module individually (as a DLL).

This commit is contained in:
rude
2009-08-04 19:57:14 +02:00
parent 524ef5e118
commit 8e681b4204
59 changed files with 5315 additions and 400 deletions
+6 -1
View File
@@ -80,8 +80,13 @@ namespace image
luax_register_gc(L, "love.image", instance);
return luax_register_module(L, wrap_Image_functions, wrap_Image_types, "image");
return luax_register_module(L, wrap_Image_functions, wrap_Image_types, 0, "image");
}
} // image
} // love
int luaopen_love_image(lua_State * L)
{
return love::image::wrap_Image_open(L);
}