forked from drakeshin/AtomicGameEngine
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e0529ee
commit 26b88e4
Showing
8 changed files
with
124 additions
and
51 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
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 |
---|---|---|
@@ -0,0 +1,106 @@ | ||
var fs = require('fs-extra'); | ||
var path = require("path"); | ||
var host = require("./Host"); | ||
var atomicRoot = host.atomicRoot; | ||
|
||
var buildDir = host.artifactsRoot + "Build/Mac/"; | ||
var editorAppFolder = host.artifactsRoot + "/AtomicEditor/AtomicEditor.app/"; | ||
|
||
namespace('build', function() { | ||
|
||
task('atomiceditor', { | ||
async: true | ||
}, function() { | ||
|
||
// Clean build | ||
var cleanBuild = true; | ||
if (cleanBuild) { | ||
common.cleanCreateDir(buildDir); | ||
common.cleanCreateDir(editorAppFolder); | ||
common.cleanCreateDir(host.getGenScriptRootDir("MACOSX")); | ||
} | ||
|
||
// create the generated script files, so they will be picked up by cmake | ||
host.createGenScriptFiles("MACOSX"); | ||
|
||
process.chdir(buildDir); | ||
|
||
var cmds = []; | ||
|
||
cmds.push("cmake ../../../ -DATOMIC_DEV_BUILD=0 -G Xcode"); | ||
cmds.push("xcodebuild -target GenerateScriptBindings -configuration Release") | ||
cmds.push("xcodebuild -target AtomicEditor -target AtomicPlayer -configuration Release") | ||
|
||
jake.exec(cmds, function() { | ||
|
||
fs.copySync(buildDir + "Source/AtomicEditor/Release/AtomicEditor.app", editorAppFolder); | ||
|
||
var resourceDest = editorAppFolder + "/Contents/Resources/" | ||
|
||
// We need some resources to run | ||
fs.copySync(atomicRoot + "Resources/CoreData", | ||
resourceDest + "CoreData"); | ||
|
||
fs.copySync(atomicRoot + "Resources/PlayerData", | ||
resourceDest + "PlayerData"); | ||
|
||
fs.copySync(atomicRoot + "Data/AtomicEditor", | ||
resourceDest + "ToolData"); | ||
|
||
fs.copySync(atomicRoot + "Resources/EditorData", | ||
resourceDest + "EditorData"); | ||
|
||
fs.copySync(atomicRoot + "Artifacts/Build/Resources/EditorData/AtomicEditor/EditorScripts", | ||
resourceDest + "EditorData/AtomicEditor/EditorScripts"); | ||
|
||
|
||
console.log("\n\nAtomic Editor build to " + editorAppFolder + "\n\n"); | ||
|
||
complete(); | ||
|
||
}, { | ||
printStdout: true | ||
}); | ||
|
||
}); | ||
|
||
// Generate a XCode Workspace | ||
task('genxcode', { | ||
async: true | ||
}, function() { | ||
|
||
var xcodeRoot = path.resolve(atomicRoot, "") + "-XCode"; | ||
|
||
if (!fs.existsSync(xcodeRoot)) { | ||
jake.mkdirP(xcodeRoot); | ||
} | ||
|
||
// create the generated script files, so they will be picked up by cmake | ||
host.createGenScriptFiles("MACOSX"); | ||
|
||
process.chdir(xcodeRoot); | ||
|
||
var cmds = []; | ||
|
||
cmds.push("cmake ../AtomicGameEngine -DATOMIC_DEV_BUILD=1 -G Xcode"); | ||
cmds.push("xcodebuild -target GenerateScriptBindings -configuration Debug") | ||
|
||
jake.exec(cmds, function() { | ||
|
||
var task = jake.Task['build:genscripts'] | ||
|
||
task.addListener('complete', function () { | ||
console.log("\n\nXCode workspace generated in " + xcodeRoot + "\n\n"); | ||
complete(); | ||
}); | ||
|
||
task.invoke("MACOSX"); | ||
|
||
}, { | ||
printStdout: true | ||
}); | ||
|
||
}); | ||
|
||
|
||
});// end of build namespace |
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
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
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,50 +1,6 @@ | ||
var fs = require('fs-extra'); | ||
|
||
common = require("./HostCommon"); | ||
|
||
// forward exports | ||
var atomicRoot = exports.atomicRoot = common.atomicRoot; | ||
var artifactsRoot = exports.artifactsRoot = common.artifactsRoot; | ||
exports.cleanCreateDir = common.cleanCreateDir; | ||
|
||
var buildDir = common.artifactsRoot + "Build/Mac/"; | ||
var atomicToolBinary = buildDir + "Source/AtomicTool/Debug/AtomicTool"; | ||
|
||
namespace('build', function() { | ||
|
||
task('atomiceditor', { | ||
async: true | ||
}, function() { | ||
|
||
common.cleanCreateDir(buildDir); | ||
|
||
process.chdir(buildDir); | ||
|
||
var bindCmd = atomicToolBinary + " bind \"" + atomicRoot + "\" "; | ||
|
||
var cmds = [ | ||
"cmake ../../../ -DATOMIC_DEV_BUILD=1 -G Xcode", | ||
"xcodebuild -target AtomicTool -configuration Debug", | ||
bindCmd + "Script/Packages/Atomic/ MACOSX", | ||
bindCmd + "Script/Packages/AtomicPlayer/ MACOSX", | ||
bindCmd + "Script/Packages/ToolCore/ MACOSX", | ||
bindCmd + "Script/Packages/Editor/ MACOSX", | ||
bindCmd + "Script/Packages/AtomicNET/ MACOSX", | ||
"cmake ../../../ -DATOMIC_DEV_BUILD=1 -G Xcode", | ||
"xcodebuild -configuration Debug" | ||
] | ||
|
||
jake.exec(cmds, function() { | ||
|
||
fs.copySync(buildDir + "Source/AtomicEditor/Debug/AtomicEditor.app", artifactsRoot + "Bin/AtomicEditor.app"); | ||
|
||
complete(); | ||
|
||
console.log("AtomicEditor built to: " + artifactsRoot + "Bin/AtomicEditor.app"); | ||
|
||
}, { | ||
printStdout: true | ||
}); | ||
|
||
}); | ||
|
||
}); // end of build namespace | ||
exports = module.exports = common; | ||
exports.atomicTool = exports.artifactsRoot + "Build/AtomicTool/AtomicTool"; |
Empty file.
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
#!/bin/sh | ||
./Build/Mac/node/node ./Build/node_modules/jake/bin/cli.js -f ./Build/Scripts/Bootstrap.js build:genxcode --trace |
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