summaryrefslogtreecommitdiffstats
path: root/Mac/Lib/mkcwproject
Commit message (Collapse)AuthorAgeFilesLines
* Updated for CW7Jack Jansen2001-12-142-538/+114
|
* Add default values for options in the class init routine, not in the ↵Jack Jansen2001-12-142-14/+17
| | | | convenience wrapper function: distutils uses the class directly. Fixes bug #492665.
* Merged changes made on r22b2-branch between r22b2 and r22b2-mac (theJack Jansen2001-11-305-41/+9
| | | | changes from start of branch upto r22b2 were already merged, of course).
* Add the MSL C library to the set of standard librariesJack Jansen2001-11-102-1/+37
| | | | | | | linked against. Most, but not all, of it is included in PythonCore, but extensions may want to use some of the routines not included. Fixes a bug reported by Tom Loredo.
* Import the MacOS toolbox modules from the Carbon package.Jack Jansen2001-08-251-1/+1
|
* Got rid of the activate() so codewarrior doesn't come to front. It isn't ↵Jack Jansen2001-08-111-1/+0
| | | | needed, and without it you can get work done while building the projects:-)
* use the proper prefix file under CarbonJust van Rossum2001-08-111-1/+4
|
* Recognize {compiler} and {project} prefixes to pathnames and output the ↵Jack Jansen2001-01-241-1/+10
| | | | correct XML.
* Removed extraneous references to Modules:TEJack Jansen2001-01-231-9/+0
|
* Various settings were unconditionally set. Allow them to be overridden in ↵Jack Jansen2001-01-231-4/+6
| | | | the settings dict.
* If the template is not specified it depends on the current execution model ↵Jack Jansen2001-01-231-4/+12
| | | | (classic ppc or carbon).
* Added a template for Carbon plugin projects.Jack Jansen2001-01-238-0/+1104
|
* Moved files from template to template-ppc, as this is the template for ↵Jack Jansen2001-01-238-0/+0
| | | | classic PPC projects.
* Use &# escape for non-ascii chars.Jack Jansen2001-01-231-3/+3
|
* Better test for skipping project creation: the project file should also ↵Jack Jansen2001-01-221-2/+9
| | | | exist and be newer than the xml file, and the .exp should exist.
* Don't generate project if the XML file already exists and is identical to ↵Jack Jansen2001-01-211-1/+9
| | | | what we've generated. Overridable with a "force" argument to mkproject().
* Added an extraexportsymbols option, to allow (you guessed it:-) extra export ↵Jack Jansen2000-12-031-1/+5
| | | | symbols to be specified.
* Allow recursive searh entries by ending the pathname in ":*".Jack Jansen2000-12-032-2/+9
|
* Don't generate SYM files by default.Jack Jansen2000-12-031-1/+1
|
* Added support for adding libraries.Jack Jansen2000-11-266-3/+35
| | | | Added support for project-relative and absolute path names in the search path entries.
* Added MathLib and InterfaceLib. Added Python:Include so #include ↵Jack Jansen2000-11-191-4/+49
| | | | "package/file.h" works. Moved bits around so now at least Numeric with Distutils builds and instals.
* Close the project after building it, so that building umpteen projects ↵Jack Jansen2000-11-191-0/+1
| | | | doesn't keep all the projects open.
* Added a workaround for shortcomings in the OSA support: there can be ↵Jack Jansen2000-09-242-5/+16
| | | | class/property conflicts and passing classes as arguments doesn't work. The package now seems to work.
* mkcwproject now works, but for one thing: the import of the XML document as ↵Jack Jansen2000-09-223-7/+13
| | | | a project through AppleEvents.
* More bits and pieces of project generation.Jack Jansen2000-09-225-10/+119
|
* This will eventually evolve into a package that creates CodeWarrior projects ↵Jack Jansen2000-09-155-0/+845
from templates (for distutils, and possibly the standard extensions too). For now it generates a correct xml file based on sources/output/expfile, but that is about all.