Lots of fixes. Fixed missing power management building. Added template icons to the project templates. DocSet stuff Documentation fixes.. Fixed all the SDLtests. (Lots of tedious work.) It now depends on the static library target for convenience so I am not going to remove it from the SDL xcode project. --HG-- extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%403952
25 lines
925 B
Tcsh
Executable file
25 lines
925 B
Tcsh
Executable file
#!/bin/csh
|
|
|
|
###
|
|
## This script installs the stationary
|
|
###
|
|
|
|
sudo -v -p "Please enter the administrator password: "
|
|
|
|
# project templates
|
|
sudo /Developer/Tools/CpMac -r "Project Stationary/SDL Application" "/Developer/ProjectBuilder Extras/Project Templates/Application/"
|
|
|
|
sudo /Developer/Tools/CpMac -r "Project Stationary/SDL Cocoa Application" "/Developer/ProjectBuilder Extras/Project Templates/Application/"
|
|
|
|
sudo /Developer/Tools/CpMac -r "Project Stationary/SDL Custom Cocoa Application" "/Developer/ProjectBuilder Extras/Project Templates/Application/"
|
|
|
|
sudo /Developer/Tools/CpMac -r "Project Stationary/SDL OpenGL Application" "/Developer/ProjectBuilder Extras/Project Templates/Application/"
|
|
|
|
|
|
# target templates
|
|
sudo mkdir -p "/Developer/ProjectBuilder Extras/Target Templates/SDL"
|
|
|
|
sudo /Developer/Tools/CpMac -r "Project Stationary/Application.trgttmpl" "/Developer/ProjectBuilder Extras/Target Templates/SDL"
|
|
|
|
|
|
|