Re: PATH Variable not assigning correctly for 4.0
- Posted by jeremy (admin) Jun 01, 2009
- 804 views
EUDIR should be set to your Euphoria installation directory (on many computers: C:\Euphoria). %EUDIR%\include will automatically then be placed into your Euphoria include path. Now, for things like socket.e, you need to give it the sub-path of %EUDIR%\include. For instance:
include std/socket.e include std/regex.e -- etc...
Jeremy