source: ProjectBuilder/devel/lib/ProjectBuilder/Version.pm@ 1498

Last change on this file since 1498 was 1498, checked in by Bruno Cornec, 12 years ago

Adding a prefix entry in Makefile.PL (Eric Anderson)

File size: 689 bytes
Line 
1#!/usr/bin/perl -w
2#
3# Declare versions that will be used in pb
4# Those are filtered with pb mecanism
5# and have been isolated here to avoid unrelated effects
6#
7package ProjectBuilder::Version;
8
9use strict;
10
11# Inherit from the "Exporter" module which handles exporting functions.
12
13use vars qw($VERSION $REVISION @ISA @EXPORT);
14use Exporter;
15
16# Export, by default, all the functions into the namespace of
17# any code which uses this module.
18our @ISA = qw(Exporter);
19our @EXPORT = qw(pb_version_init);
20
21$VERSION = "0.11.3";
22$REVISION = "1307";
23
24sub pb_version_init {
25
26my $projectbuilderver = $VERSION;
27my $projectbuilderrev = $REVISION;
28
29return($projectbuilderver,$projectbuilderrev);
30}
311;
Note: See TracBrowser for help on using the repository browser.