summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2007-07-30 13:46:37 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2007-07-30 13:46:37 +0000
commitc372939754c4c3d36f6957d0842d479f98c1ae71 (patch)
tree8a6128419e151d1d8d7e176ed0b403b56e250bc6
parent806847d76d2f6cb3044481950e241ff35117c535 (diff)
downloadMPC-c372939754c4c3d36f6957d0842d479f98c1ae71.tar.gz
ChangeLogTag: Mon Jul 30 13:47:13 UTC 2007 Chad Elliott <elliott_c@ociweb.com>
-rw-r--r--ChangeLog11
-rw-r--r--config/global.mpb11
-rwxr-xr-xprj_install.pl1
3 files changed, 23 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 9d6f8be0..7f79e135 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,14 @@
+Mon Jul 30 13:47:13 UTC 2007 Chad Elliott <elliott_c@ociweb.com>
+
+ * config/global.mpb:
+
+ Added a define custom to allow users to explicitly list .mpb files
+ in their projects.
+
+ * prj_install.pl:
+
+ By default, install all .mpb files.
+
Mon Jul 30 11:33:43 UTC 2007 Chad Elliott <elliott_c@ociweb.com>
* modules/ProjectCreator.pm:
diff --git a/config/global.mpb b/config/global.mpb
index b4de3cf5..55dad51f 100644
--- a/config/global.mpb
+++ b/config/global.mpb
@@ -2,8 +2,19 @@
// $Id$
project {
+ // By default send all libraries to the same directory as the project
libout = .
+
+ // Automake doesn't need the project directory in the libpaths
specific(!automake) {
libpaths = .
}
+
+ // Allow users to specify .mpb files in their project. This gives the
+ // opportunity to see them in IDE's and to install them using
+ // prj_install.pl.
+ Define_Custom(MPB) {
+ automatic = 0
+ inputext = .mpb
+ }
}
diff --git a/prj_install.pl b/prj_install.pl
index 1bd46153..1e73c677 100755
--- a/prj_install.pl
+++ b/prj_install.pl
@@ -29,6 +29,7 @@ my(%defaults) = ('header_files' => 1,
'inline_files' => 1,
'pidl_files' => 1,
'template_files' => 1,
+ 'mpb_files' => 1,
);
my(%special) = ('exe_output' => 1,