About Store Forum Documentation Contact



Post Reply 
_enums.h can't be located
Author Message
Tottel Offline
Member

Post: #1
_enums.h can't be located
I've downloaded VS 2008, and the tutorials are working perfectly.
But when I have a source file with

Code:
#include "../../../../../data/enum/_enums.h"

Then it won't compile.. It says that header file can't be located. I checked it and it's in the proper location.
Thank you.
07-07-2009 05:10 PM
Find all posts by this user Quote this message in a reply
Mocker Offline
Member

Post: #2
Re: _enums.h can't be located
I had to change the path reference when I was playing with the tutorials. The _enums.h file is under EngineSDK/Data/Enum/_enums.h , so changing to
Code:
#include "../data/enum/_enums.h"
07-26-2009 12:12 PM
Find all posts by this user Quote this message in a reply
Tottel Offline
Member

Post: #3
Re: _enums.h can't be located
That did the trick, thank you. smile
07-26-2009 09:43 PM
Find all posts by this user Quote this message in a reply
Post Reply