-
Notifications
You must be signed in to change notification settings - Fork 2
/
version.hpp.in
27 lines (23 loc) · 1009 Bytes
/
version.hpp.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*
* This file is part of PLaSK (https://plask.app) by Photonics Group at TUL
* Copyright (c) 2024 Lodz University of Technology
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, version 3.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*/
#ifndef PLASK__VERSION_H
#define PLASK__VERSION_H
// PLaSK version
#define PLASK_VERSION "${PLASK_VERSION}"
// PLaSK copyright banner
#define PLASK_BANNER1 "PLaSK ${PLASK_VERSION} --- Photonic Laser Simulation Kit"
#define PLASK_BANNER2 "(c) 2014-${CURRENT_YEAR} Lodz University of Technology, Photonics Group"
#define PLASK_BANNER3 "This program comes with ABSOLUTELY NO WARRANTY."
#endif // PLASK__VERSION_H
// kate: syntax c++;