root/trunk/idldoc/src/idldoc_version.pro @ 364

Revision 364, 474 bytes (checked in by mgalloy, 5 years ago)

Made a srcdist target for the Makefile to distribute source code to those who don't want to checkout from Subversion.

Line 
1; docformat = 'rst'
2
3;+
4; Returns IDLdoc version. This file is automatically edited by the build process
5; to edit the contents of the version and revision variables below.
6;
7; :Returns: string
8; :Keywords:
9;    full : in, optional, type=boolean
10;       set to return Subversion revision as well
11;-
12function idldoc_version, full=full
13  compile_opt strictarr
14 
15  version = '3.0b3'
16  revision = '-r363'
17 
18  return, version + (keyword_set(full) ? (' ' + revision) : '')
19end
Note: See TracBrowser for help on using the browser.