Skip to content

Commit

Permalink
Update khamake and also update khafiles accordingly
Browse files Browse the repository at this point in the history
khafiles are now asynchronous.
  • Loading branch information
RobDangerous committed Jul 31, 2016
1 parent ecb88e9 commit ae80da9
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 10 deletions.
2 changes: 1 addition & 1 deletion Kore
Submodule Kore updated 1 files
+1 −1 Tools/koremake
4 changes: 2 additions & 2 deletions Tests/Empty/khafile.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
var project = new Project('Empty');
let project = new Project('Empty');

project.addSources('Sources');

return project;
resolve(project);
4 changes: 2 additions & 2 deletions Tests/Gamepads/khafile.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
var project = new Project('Gamepads');
let project = new Project('Gamepads');

project.addSources('src');

return project;
resolve(project);
4 changes: 2 additions & 2 deletions Tests/MultiWindow/khafile.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
var project = new Project('MultiWindow');
let project = new Project('MultiWindow');

project.addSources('Sources');

return project;
resolve(project);
2 changes: 1 addition & 1 deletion Tools/khamake
Submodule khamake updated 441 files
3 changes: 1 addition & 2 deletions make.js
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
// The is the entry point to build Kha projects.
require('./Tools/khamake/khamake.js')
require('./Tools/khamake/khamake.js');

0 comments on commit ae80da9

Please sign in to comment.