Skip to content

Commit 3f6e59d

Browse files
codeblocks becomes qtcreator
1 parent 429b194 commit 3f6e59d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

projectGeneratorElectron/index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,8 @@ var platforms = {
9292
"osx": "OS X (Xcode)",
9393
"vs": "Windows (Visual Studio 2015)",
9494
"ios": "iOS (Xcode)",
95-
"linux": "Linux 32-bit (Code::Blocks)",
96-
"linux64": "Linux 64-bit (Code::Blocks)",
95+
"linux": "Linux 32-bit (qtCreator)",
96+
"linux64": "Linux 64-bit (qtCreator)",
9797
"linuxarmv6l": "Linux ARMv6 (Makefiles)",
9898
"linuxarmv7l": "Linux ARMv7 (Makefiles)"
9999
};
@@ -808,7 +808,7 @@ ipc.on('launchProjectinIDE', function(event, arg) {
808808
console.log('OSX project file not found!');
809809
}
810810
} else if( arg.platform == 'linux' || arg.platform == 'linux64' ){
811-
var linuxPath = pathTemp.join(fullPath, arg['projectName'] + '.cbp');
811+
var linuxPath = pathTemp.join(fullPath, arg['projectName'] + '.qbs');
812812
console.log( linuxPath );
813813
var exec = require('child_process').exec;
814814
exec('xdg-open ' + linuxPath, function callback(error, stdout, stderr){

0 commit comments

Comments
 (0)