-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathversion.h
More file actions
31 lines (25 loc) · 1.02 KB
/
version.h
File metadata and controls
31 lines (25 loc) · 1.02 KB
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
28
29
30
/**
* @file version.h
* \brief A simple macro definition file
*
* It's a simple file with a bunch of macro definitions related to Windows Resource File.
* @author Plinio Andrade <PAndrade@fele.com>
* @version 1.0.0.0 (Qt: 5.3.1)
*/
#ifndef VERSION_H
#define VERSION_H
#define VER_FILEVERSION 1,0,0,0
#define VER_FILEVERSION_STR "1.0.0.0\0"
#define VERSION_ABOUT "1.0.0.0"
#define VER_PRODUCTVERSION 1,0,0,0
#define VER_PRODUCTVERSION_STR "1.0\0"
#define VER_COMPANYNAME_STR "Indiana Tech"
#define VER_FILEDESCRIPTION_STR "Tech Scheduler"
#define VER_INTERNALNAME_STR "Tech Scheduler"
#define VER_LEGALCOPYRIGHT_STR "Copyright © 2014 Indiana Tech"
#define VER_LEGALTRADEMARKS1_STR "All Rights Reserved"
#define VER_LEGALTRADEMARKS2_STR VER_LEGALTRADEMARKS1_STR
#define VER_ORIGINALFILENAME_STR "Tech Scheduler.exe"
#define VER_PRODUCTNAME_STR "Tech Scheduler"
#define VER_COMPANYDOMAIN_STR "indianatech.edu"
#endif // VERSION_H