This commit is contained in:
yangws 2010-11-16 08:36:23 +00:00
parent 7a698c1945
commit e0f8553551
3 changed files with 2 additions and 5 deletions

View File

@ -160,7 +160,7 @@ function AddConfigurations(proj, strProjectName)
var CLTool = config.Tools('VCCLCompilerTool');
// Additional Inlcude Directories
var strAddIncludeDir = '.;.\\win32;..\\cocos2dx;..\\cocos2dx\\include;..\\cocos2dx\\platform\\win32\\third_party\\OGLES';
var strAddIncludeDir = '.;.\\win32;.\\Classes;..\\cocos2dx;..\\cocos2dx\\include;..\\cocos2dx\\platform\\win32\\third_party\\OGLES';
if (wizard.FindSymbol('CCX_USE_BOX2D'))
{
strAddIncludeDir += ';..\\;..\\Box2D';

View File

@ -47,10 +47,7 @@ bool AppDelegate::applicationDidFinishLaunching()
CCScene * pScene = HelloWorld::scene();
CCLayer * pLayer = CCLayer::node();
pLayer->autorelease();
pScene->addChild(pLayer);
pDirector->runWithScene(pScene);
return true;

View File

@ -1,5 +1,5 @@
#include "main.h"
#include "../AppDelegate.h"
#include "AppDelegate.h"
HINSTANCE g_hInstance;