Files
cocos-engine/scripts/native-pack-tool/source/cocosConfig.ts
媛媛 d375996c3d [3.6.0] init native pack tools (#11175)
* init native pack tool

* compile -> make

* update command line

* update readme

* update android make

* remove some config

* run all platform

* update install

* fix encrypte script

* fix mac/ios create

* update readme

* fix review

* fix run mac

* fix excuteTemplateTask

* remove linux

* update readme

* update
2022-06-08 15:26:02 +08:00

33 lines
770 B
TypeScript

export const cocosConfig = {
default: {
projectName: 'MyGame',
},
cmake: {
windows: {
generators: [
{
G: 'Visual Studio 16 2019',
},
{
G: 'Visual Studio 15 2017',
},
{
G: 'Visual Studio 14 2015',
},
{
G: 'Visual Studio 12 2013',
},
{
G: 'Visual Studio 11 2012',
},
{
G: 'Visual Studio 10 2010',
},
{
G: 'Visual Studio 9 2008',
},
],
},
},
};