-
-
Notifications
You must be signed in to change notification settings - Fork 169
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update khamake and also update khafiles accordingly
khafiles are now asynchronous.
- Loading branch information
1 parent
ecb88e9
commit ae80da9
Showing
6 changed files
with
9 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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'); |