0

I'm using Visual Studio 2013 and I have a Virtual Computer with Windows Embedded Compact 2013.
I already have tested some simple C++ applications, just to see if they work on WEC2013 - they do.
Now I am looking for a way to use Lua as a scripting language.

I guess it would work if I embed the right libraries to my project, unfortunately I could not find any libraries that work with the WEC2013-platform. I have already embeded Lua into a C++ application on win32-platform succesfully.

Now my question is:

Are there some Lua-libraries for WEC2013 or is there any software I could use to reach my aim?

I hope you understand what I'm trying to say, thanks.

Zydar
  • 85
  • 1
  • 8
  • have You tried googling for "Lua Windows CE"? Because there are plenty of libraries already available, not sure if those are going to fit You needs, but still... [LuaCE](http://luace.codeplex.com/), [LuaWINCE](http://code.google.com/p/lua-wince/), [Lua4WINCE](https://github.com/luaforge/lua4wince). In fact, changes to be done to standard [luaconf.h](http://www.lua.org/source/5.1/luaconf.h.html) should be minor to be able to compile it for WEC2013.... – Kamiccolo Sep 10 '14 at 11:07
  • yes I tried googling and the only thing I found was "LUA 5.2.3 for Windows CE 5.0 (ARMV4I)" I included the library, but it doesn't work. Well I haven't tried to do some changes to luaconf.h and to be honest I don't even know what to change there :/ – Zydar Sep 10 '14 at 11:47

1 Answers1

0

I generated my own Lua-library with Visual Studio, by using the latest sources of Lua, which I have downloaded. Then I just had to add the library-path and the include directory to my project to make it work.

Zydar
  • 85
  • 1
  • 8