mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-06 00:10:59 +00:00
5321a41fe1
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@37594 a592a061-630c-0410-9148-cb99ea01b6c8
27 lines
730 B
C++
27 lines
730 B
C++
/* -*- C++ -*- */
|
|
/**
|
|
* \file version.cpp
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Jean-Marc Lasgouttes
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
///
|
|
extern char const * const lyx_version = PACKAGE_VERSION;
|
|
///
|
|
extern const int lyx_version_major = LYX_MAJOR_VERSION;
|
|
extern const int lyx_version_minor = LYX_MINOR_VERSION;
|
|
///
|
|
extern char const * const lyx_release_date = LYX_DATE;
|
|
|
|
/// Package identifier (lyx[-<version-suffix>])
|
|
extern char const * const lyx_package = PACKAGE;
|
|
|
|
/// This is the version information shown by 'lyx --version'
|
|
extern char const * const lyx_version_info = VERSION_INFO;
|