summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2003-04-29 13:48:41 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2003-04-29 13:48:41 +0000
commitcf11ecbecd4152c007c27d2fa06518ceb05a8043 (patch)
tree0238eac2ccc5caa07e937e042a0b66b62fd41962 /bin
parent5eaf7dbc05e1d2a2d82281c74d5307bc299df936 (diff)
downloadATCD-cf11ecbecd4152c007c27d2fa06518ceb05a8043.tar.gz
ChangeLogTag: Tue Apr 29 08:47:16 2003 Chad Elliott <elliott_c@ociweb.com>
Diffstat (limited to 'bin')
-rw-r--r--bin/MakeProjectCreator/modules/ProjectCreator.pm8
1 files changed, 8 insertions, 0 deletions
diff --git a/bin/MakeProjectCreator/modules/ProjectCreator.pm b/bin/MakeProjectCreator/modules/ProjectCreator.pm
index 7dddf6ae5d2..f68552ea131 100644
--- a/bin/MakeProjectCreator/modules/ProjectCreator.pm
+++ b/bin/MakeProjectCreator/modules/ProjectCreator.pm
@@ -767,6 +767,14 @@ sub generate_default_target_names {
last;
}
}
+
+ ## If we still don't have a project type, then we will
+ ## default to a library
+ if (!$self->exe_target()) {
+ my($base) = $self->base_directory();
+ $self->process_assignment('sharedname', $base);
+ $self->process_assignment('staticname', $base);
+ }
}
}
}