user1185305
user1185305

Reputation: 895

cocos2d-x 3.0 rc1, create project on Windows

I've downloaded Cocos2d-x 3.0 rc1 on my Windows machine. I'm trying to figure out how to build and create a new game project. On older versions there was a script. How is it done on Windows with the new version?

Upvotes: 1

Views: 2016

Answers (1)

Tiago Almeida
Tiago Almeida

Reputation: 14237

I had the same problem, here is how I solved it:

cd cocos2d-x
./setup.py

Close and open the terminal again then:

cocos new MyGame -p com.your_company.mygame -l cpp -d A_FILE_PATH_FOR_YOUR_PROJECT

Upvotes: 3

Related Questions