I'd like to create variant of External target template
so I went to the directory
/Library/Application Support/Apple/Developer Tools/Target Templates/Special Targets
duplicated External Target.trgttmpl
and named new file as SBMAKE. trgttmpl
so I have directory /Library/Application Support/Apple/Developer Tools/Target Templates/Special Targets
with the following files
-rw-rw-r--@ 1 root admin 309 Sep 12 2006 Copy Files Target.trgttmpl
-rw-rw-r--@ 1 root admin 255 Sep 12 2006 External Target.trgttmpl
-rw-rw-r--@ 1 root admin 242 May 24 08:35 SBMAKE.trgttmpl
-rw-rw-r--@ 1 root admin 302 Sep 12 2006 Shell Script Target.trgttmpl
content of SBMAKE. trgttmpl is
{
Class = Legacy;
Description = "Target that invokes an external build system sbmake.";
BuildToolPath = "/usr/bin/make";
BuildToolArgsString = "$(ACTION)";
CustomBuildSettings = {
};
passBuildSettingsInEnvironment = 1;
}
but after Xcode restarting and issuing Project -> New Target command
my new template is nowhere to be seen
so what did I miss?
thanks