~andreas-strasser/lask/trunk

1
2
3
4
5
6
7
8
9
10
11
/**
 *	The strings like @VARIABLE@ in this file are replaced by cmake during the
 *	build process with the end result that build time parameters will be
 *	available to the built executable.
 */

namespace config {
	public const string PROJECT_NAME = "@PROJECT_NAME@";
  	public const string LASK_VERSION = "@LASK_VERSION@";
  	public const string INSTALL_PATH = "@CMAKE_INSTALL_PREFIX@";
}