Merge branch 'meta-library' of git://github.com/gsmaverick/wren into gsmaverick-meta-library

This commit is contained in:
Bob Nystrom
2015-03-25 19:21:58 -07:00
7 changed files with 56 additions and 1 deletions
+7
View File
@@ -14,6 +14,10 @@
#include "wren_io.h"
#endif
#if WREN_USE_LIB_META
#include "wren_meta.h"
#endif
#if WREN_DEBUG_TRACE_MEMORY || WREN_DEBUG_TRACE_GC
#include <time.h>
#endif
@@ -68,6 +72,9 @@ WrenVM* wrenNewVM(WrenConfiguration* configuration)
#if WREN_USE_LIB_IO
wrenLoadIOLibrary(vm);
#endif
#if WREN_USE_LIB_META
wrenLoadMetaLibrary(vm);
#endif
return vm;
}