Files
cappuccino/Tools/bake/example.bakefile
T
Tom Robinson d797b2fe80 Preliminary Windows built tool support (objj, objjc, steam and parts of the ant tasks work).
bake updated (now just provide a path of any type: ssh://, git://, etc)

Reviewed by Francisco.
2008-09-04 06:13:00 -07:00

47 lines
1.4 KiB
Plaintext

{
"sources" : [
{
"type" : "git",
"path" : "git://github.com/280north/cappuccino.git",
"parts" : [
{
"src" : "Objective-J",
"dst" : "Frameworks/Objective-J",
"build" : "ant -DBuild=BUILD_PATH",
"copyFrom" : "Release/Objective-J"
},
{
"src" : "Foundation",
"dst" : "Frameworks/Foundation",
"build" : "steam -c Release -b BUILD_PATH",
"copyFrom" : "Release/Foundation"
},
{
"src" : "AppKit",
"dst" : "Frameworks/AppKit",
"build" : "steam -c Release -b BUILD_PATH",
"copyFrom" : "Release/AppKit"
}
]
},
{
"type" : "git",
"server" : "ssh://git@git.myserver.com/home/git/myapp.git",
"parts" : [
{
"src" : "Editor/Server",
"dst" : "Server"
}
]
}
],
"deployments" : [
{ "host" : "deploy@myserver.com", "path" : "/var/www/mysite/public" }
],
"templateVars" : {
"APPLICATION_NAME" : "My Application",
"BACKGROUND_COLOR" : "black",
"TEXT_COLOR" : "black"
}
}