1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
|
Fri Jul 18 19:09:10 UTC 2008 Chad Elliott <elliott_c@ociweb.com>
* modules/Driver.pm:
* modules/FeatureParser.pm:
* modules/ProjectCreator.pm:
* modules/VC8ProjectCreator.pm:
* modules/WorkspaceCreator.pm:
More non-functional code cleanup changes.
Fri Jul 18 18:22:41 UTC 2008 Chad Elliott <elliott_c@ociweb.com>
* modules/ProjectCreator.pm:
Fixed a bug with the 'output_basename' template variable. For
Windows based project types, the input file used back-slashes and
taking basename() of that sort of text on UNIX will not result in
the expected value. We must ensure that the text passed to
basename() always has forward slashes.
Fri Jul 18 17:58:58 UTC 2008 Chad Elliott <elliott_c@ociweb.com>
* templates/make.net.mpd:
Fixed a bug where TARGETDIR was not set if there was no exeout set
and the project was an executable.
* templates/automake.mpd:
* templates/bmake.mpd:
* templates/cccommon.mpt:
* templates/nmake.mpd:
* templates/vc7.mpd:
* templates/vc8vb.mpd:
* templates/wb26wrmakefile.mpd:
Removed trailing white-space.
Fri Jul 18 17:22:56 UTC 2008 Chad Elliott <elliott_c@ociweb.com>
* modules/ProjectCreator.pm:
Fixed a bug with the 'output_dirname' template variable. For
Windows based project types, the input file used back-slashes and
taking dirname() of that sort of text on UNIX will not result in
the expected value. We must ensure that the text passed to
dirname() always has forward slashes.
Fri Jul 18 16:03:52 UTC 2008 Chad Elliott <elliott_c@ociweb.com>
* clone_build_tree.pl:
* combine_dsw.pl:
* create_base.pl:
* prj_install.pl:
* registry.pl:
* vs_postclean.pl:
* devtools/document_template.pl:
* devtools/highlight_template.pl:
* generate_export_header.pl:
* modules/AutomakeProjectCreator.pm:
* modules/AutomakeWorkspaceCreator.pm:
* modules/BCB2007ProjectCreator.pm:
* modules/BCB2007WorkspaceCreator.pm:
* modules/BDS4ProjectCreator.pm:
* modules/BDS4WorkspaceCreator.pm:
* modules/BMakeProjectCreator.pm:
* modules/BMakeWorkspaceCreator.pm:
* modules/CCProjectCreator.pm:
* modules/CCWorkspaceCreator.pm:
* modules/ConfigParser.pm:
* modules/Creator.pm:
* modules/DirectoryManager.pm:
* modules/Driver.pm:
* modules/EM3ProjectCreator.pm:
* modules/EM3WorkspaceCreator.pm:
* modules/FeatureParser.pm:
* modules/GHSProjectCreator.pm:
* modules/GHSWorkspaceCreator.pm:
* modules/HTMLProjectCreator.pm:
* modules/HTMLWorkspaceCreator.pm:
* modules/MPC.pm:
* modules/MWC.pm:
* modules/MakeProjectBase.pm:
* modules/MakeProjectCreator.pm:
* modules/MakeWorkspaceBase.pm:
* modules/MakeWorkspaceCreator.pm:
* modules/NMakeProjectCreator.pm:
* modules/NMakeWorkspaceCreator.pm:
* modules/Options.pm:
* modules/OutputMessage.pm:
* modules/Parser.pm:
* modules/ProjectCreator.pm:
* modules/SLEProjectCreator.pm:
* modules/SLEWorkspaceCreator.pm:
* modules/StringProcessor.pm:
* modules/TemplateInputReader.pm:
* modules/TemplateParser.pm:
* modules/VC6ProjectCreator.pm:
* modules/VC6WorkspaceCreator.pm:
* modules/VC71ProjectCreator.pm:
* modules/VC71WorkspaceCreator.pm:
* modules/VC7ProjectCreator.pm:
* modules/VC7WorkspaceCreator.pm:
* modules/VC8ProjectCreator.pm:
* modules/VC8WorkspaceCreator.pm:
* modules/VCProjectBase.pm:
* modules/WB26ProjectCreator.pm:
* modules/WB26WorkspaceCreator.pm:
* modules/WinProjectBase.pm:
* modules/WinWorkspaceBase.pm:
* modules/WorkspaceCreator.pm:
* modules/WorkspaceHelper.pm:
* modules/XMLProjectBase.pm:
Cleaned up the code and added comments. There were no functional
changes made.
Thu Jul 17 15:10:48 UTC 2008 Chad Elliott <elliott_c@ociweb.com>
* modules/ProjectCreator.pm:
We need to pass the 'commandflags' setting to the command helper,
not the hash map containing all of the type settings.
Thu Jul 17 13:50:33 UTC 2008 Chad Elliott <elliott_c@ociweb.com>
* modules/ProjectCreator.pm:
Fixed a bug where a command helper returns output files for a
particular component type and file, but they were not taken into
account within the project.
Also, fixed another bug relating to the group determiniation of
automatically added files. In doing so, the components for other
component types were being defined but set to an empty set which
was causing problems with automatically adding file to these
components.
Wed Jul 16 16:11:33 UTC 2008 Chad Elliott <elliott_c@ociweb.com>
* modules/CommandHelper.pm:
Fixed a comment.
* modules/ProjectCreator.pm:
Delay replacing <%...%> that contain project keywords until they
are used by the template. Doing this allows the values to be used
regardless of the order in which keywords are processed within the
project.
Tue Jul 15 16:08:40 UTC 2008 Chad Elliott <elliott_c@ociweb.com>
* modules/CommandHelper.pm:
Extended the interface to allow the helper to provide "tied"
custom files.
* modules/ProjectCreator.pm:
Made the following changes:
1) Added an optimization to generated_source_listed() to avoid
attempting to add custom generated files if they couldn't
possibly be generated.
2) Added the ability for a command helper to "tie" files together
so that they are processed closely together.
3) Fixed a bug where an output file could end up being listed more
than once in the custom output files value.
Fri Jul 11 18:13:36 UTC 2008 Adam Mitz <mitza@ociweb.com>
* vs_postclean.pl:
" becomes ", not '.
Fri Jul 11 15:18:27 UTC 2008 Adam Mitz <mitza@ociweb.com>
* docs/README:
Cleaned up some typos (stray semicolons)
* vs_postclean.pl:
Restore current directory after changing it.
Translate &, etc.
Added support for solutions, all referenced projects will be cleaned.
Fri Jul 11 14:56:44 UTC 2008 Chad Elliott <elliott_c@ociweb.com>
* docs/README:
* modules/ProjectCreator.pm:
Added a pseudo template variable, rmdir, which will be defined
depending upon the project type. It will be 'rmdir /s/q' on
Windows and 'rm -rf' on UNIX.
* modules/AutomakeWorkspaceCreator.pm:
Fixed a bug where the configure.ac.Makefiles did not contain the
correct names if the -name_modifier option was used.
* modules/WorkspaceCreator.pm:
Reduced op code count.
Fri Jul 11 14:30:53 UTC 2008 Chad Elliott <elliott_c@ociweb.com>
* docs/README:
* modules/ProjectCreator.pm:
Added a pseudo template variable, slash, which will be defined
depending upon the project type.
* templates/make.net.mpt:
* templates/makedll.mpt:
Rely on the slash psuedo template variable instead of defining one
in these template input files.
Fri Jul 11 11:10:00 UTC 2008 Simon Massey <sma at prismtech dot com>
* templates/make.net.mpt:
Added dollar-Id-dollar to appease a non-MPC related script that, for
some reason, insists on applying it's influence on MPC.
Thu Jul 10 22:34:12 UTC 2008 Chad Elliott <elliott_c@ociweb.com>
* vs_postclean.pl:
Added a script to perform the postclean step for Visual Studio
projects.
Thu Jul 10 19:03:14 UTC 2008 Chad Elliott <elliott_c@ociweb.com>
* modules/Depgen/DependencyEditor.pm:
* modules/Depgen/DependencyGenerator.pm:
* modules/Depgen/DependencyWriter.pm:
* modules/Depgen/DependencyWriterFactory.pm:
* modules/Depgen/Driver.pm:
* modules/Depgen/MakeDependencyWriter.pm:
* modules/Depgen/MakeObjectGenerator.pm:
* modules/Depgen/NMakeDependencyWriter.pm:
* modules/Depgen/NMakeObjectGenerator.pm:
* modules/Depgen/ObjectGenerator.pm:
* modules/Depgen/ObjectGeneratorFactory.pm:
* modules/Depgen/Preprocessor.pm:
Cleaned up the code and reduced op code count.
* templates/vc7.mpd:
* templates/vc8.mpd:
Added a VCPostCleanEventTool, which doesn't exist in Visual
Studio, to hold the 'postclean' settings. This is mainly here to
enable another script to come along and perform the postclean
function.
Thu Jul 10 18:28:33 UTC 2008 Chad Elliott <elliott_c@ociweb.com>
* docs/README:
* modules/ProjectCreator.pm:
Added a new feature, pre_dirname, which is similar to pre_filename
except that the value is prepended to the output directory for
generated files. If a separate directory is desired, the
pre_dirname setting should end in a slash.
Thu Jul 10 15:28:50 UTC 2008 Chad Elliott <elliott_c@ociweb.com>
* devtools/document_template.pl:
Fixed a bug where template variables used within template
functions were ignored.
* docs/README:
* modules/ProjectCreator.pm:
Added the ability to utilize project settings within the
Define_Custom command, commandflags, dependent, output_option,
and postcommand settings.
Thu Jul 10 14:29:44 UTC 2008 Chad Elliott <elliott_c@ociweb.com>
* modules/MakeProjectCreator.pm:
* templates/make.net.mpd:
* templates/make.net.mpt:
* docs/templates/make.net.txt:
Added support for compiling C# code using Mono.
* modules/Creator.pm:
* modules/ProjectCreator.pm:
* modules/StringProcessor.pm:
* modules/TemplateParser.pm:
* modules/VC9ProjectCreator.pm:
* modules/VC9WorkspaceCreator.pm:
Decreased op code count.
Wed Jul 9 13:46:02 UTC 2008 Chad Elliott <elliott_c@ociweb.com>
* modules/AutomakeProjectCreator.pm:
* modules/MakeProjectBase.pm:
* modules/Parser.pm:
Reduce op code count.
* modules/CommandHelper.pm:
Added a debug message to assist users in figuring out why their
helper isn't being picked up.
* modules/Creator.pm:
Modified recursive_directory_list() to skip .svn and CVS
directories.
* modules/ProjectCreator.pm:
Fixed a very old and incorrect assumption that output file names
generated as part of a custom definition had to be longer than the
length of the input file name.
Tue Jul 8 15:35:29 UTC 2008 Steve Huston <shuston@riverace.com>
* templates/vc8.mpd: Allow a project to be a "make output" type using
the VCNMakeTool section instead of the usual compile, link, etc.
sections. This allows one to drive nmake-type projects from a
VC project. Also, enable setting the DebugInformationFormat even
when doing an optimize/Release build. Thanks to Kelly Hickel for
contributing these.
Tue Jul 8 13:09:22 UTC 2008 Chad Elliott <elliott_c@ociweb.com>
* modules/ProjectCreator.pm:
Fixed a bug in my change from Thu Jul 3 11:46:23 UTC 2008. Files
were not being automatically added when they didn't exist on the
file system.
Mon Jul 7 17:00:33 UTC 2008 Chad Elliott <elliott_c@ociweb.com>
* docs/README:
* modules/ProjectCreator.pm:
MPC had always assumed that output files went into the same
directory as the input file (unless specified otherwise through
gendir). Now, in the Define_Custom for the command, this
assumption can be modified. If 'output_follows_input' is set to
0, it will assume that output files go into the same directory as
the project (unless specified otherwise through gendir).
Mon Jul 7 13:10:46 UTC 2008 Chad Elliott <elliott_c@ociweb.com>
* modules/ProjectCreator.pm:
Modified the behavior of adding to prebuild, postbuild, and
postclean. Values that are added are now separated via the
command separator for the project type. This will assure that
multiple commands are executed separately (and unconditionally).
Thu Jul 3 16:36:30 UTC 2008 Chad Elliott <elliott_c@ociweb.com>
* docs/README:
* modules/Creator.pm:
* modules/ProjectCreator.pm:
Added a new keyword, postclean, which is similar to postbuild
except that it is executed during the realclean target.
* templates/bmake.mpd:
* templates/html.mpd:
* templates/make.mpd:
* templates/nmake.mpd:
Added the use of postclean.
Thu Jul 3 14:49:52 UTC 2008 Chad Elliott <elliott_c@ociweb.com>
* modules/ProjectCreator.pm:
For the previous change to generate_default_components(), we only
need to do this if the list of component tags was not provided to
the method.
Thu Jul 3 11:46:23 UTC 2008 Chad Elliott <elliott_c@ociweb.com>
* modules/ProjectCreator.pm:
Fixed an issue where a chain of three or more Custom_Define's
would not have the right default input/output.
Wed Jul 2 16:35:22 UTC 2008 Chad Elliott <elliott_c@ociweb.com>
* modules/CommandHelper.pm:
* modules/ProjectCreator.pm:
Modified the helper to be keyed off of the define custom name
instead of the define custom command name.
Wed Jul 2 14:04:39 UTC 2008 Chad Elliott <elliott_c@ociweb.com>
* modules/CommandHelper.pm:
* modules/ProjectCreator.pm:
Added a command helper that can be dynamically loaded to assist
the project creator in determining which files will be generated
by a command. This is useful when the output of a file can not be
represented by the usual Define_Custom syntax.
Mon Jun 30 14:55:51 UTC 2008 Chad Elliott <elliott_c@ociweb.com>
* modules/StringProcessor.pm:
Added a simple fgrep function that will find a string in an array
reference.
* modules/ProjectCreator.pm:
Fixed a bug where custom defines that generate output that can be
used as automatic input to other custom defines did not work
properly. Now, they are automatically added when possible.
Fri Jun 27 12:59:39 UTC 2008 Chad Elliott <elliott_c@ociweb.com>
* config/ixml.mpb:
* config/upnp.mpb:
Added base projects for use with the open source project Linux SDK
for UPnP Devices.
* docs/README:
* modules/ProjectCreator.pm:
Split the functionality of the 'automatic' keyword into to two.
'automatic_in' now specifies that input files are automatically
added and 'automatic_out' specifies that generated output files
are automatically added to the project. These both default to
true as 'automatic' did. 'automatic' is still accepted, but
deprecated.
Wed Jun 25 21:38:16 UTC 2008 Adam Mitz <mitza@ociweb.com>
* docs/README:
Documented the following changes.
* modules/ProjectCreator.pm:
* modules/VC7ProjectCreator.pm:
* modules/WinProjectBase.pm:
Added the <%cmdsep%> pseudovariable that can be used in prebuild,
postbuild, and postcommand. It works like <%and%> and <%or%> but it
unconditionally runs the right-hand side command.
For postcommand, added <%input_dirname%> and <%output_dirname%> which
work like their <%*_basename%> counterparts but return the directory
portion of the file name.
Thu Jun 19 01:27:55 UTC 2008 James H. Hill <hillj@isis.vanderbilt.edu>
* config/boost_system.mpb:
Base project for using the Boost system library.
Tue Jun 17 17:16:07 UTC 2008 Chad Elliott <elliott_c@ociweb.com>
* docs/templates/make.txt:
Document the 'depgen_flags' template variable.
* combine_dsw.pl:
* create_base.pl:
* depgen.pl:
* generate_export_header.pl:
* mpc.pl:
* mwc.pl:
* prj_install.pl:
* registry.pl:
* modules/ConfigParser.pm:
* modules/Creator.pm:
* modules/DirectoryManager.pm:
* modules/Driver.pm:
* modules/FeatureParser.pm:
* modules/GUID.pm:
* modules/MakeWorkspaceBase.pm:
* modules/Options.pm:
* modules/OutputMessage.pm:
* modules/Parser.pm:
* modules/ProjectCreator.pm:
* modules/StringProcessor.pm:
* modules/TemplateInputReader.pm:
* modules/TemplateParser.pm:
* modules/VCProjectBase.pm:
* modules/Version.pm:
* modules/WinProjectBase.pm:
* modules/WinWorkspaceBase.pm:
* modules/WorkspaceCreator.pm:
* modules/WorkspaceHelper.pm:
Removed unnecessary parenthesis around variable declarations.
This provides a very minor performance increase due to reduced
perl op codes.
Tue Jun 10 14:45:18 UTC 2008 Adam Mitz <mitza@ociweb.com>
* templates/make.mpd:
* templates/makedll.mpt:
Enhanced support for MinGW with "-type make".
Fri May 30 15:54:22 UTC 2008 Chad Elliott <elliott_c@ociweb.com>
* MPC version 3.6.0 released.
Local Variables:
mode: change-log
add-log-time-format: (lambda () (progn (setq tz (getenv TZ)) (set-time-zone-rule UTC) (setq time (format-time-string %a %b %e %H:%M:%S %Z %Y (current-time))) (set-time-zone-rule tz) time))
indent-tabs-mode: nil
End:
|