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
|
/*------------------------------------------------------------------------
Copyright (c) 2008-2025 SIL Global. All rights reserved.
Distributable under the terms of either the Common Public License or the
GNU Lesser General Public License, as specified in the LICENSING.txt file.
------------------------------------------------------------------------*/
// version_defs.h -- common pieces included in all the version resources
#include <windows.h>
// version numbers that should be updated for each release
#define VER_FILEVERSION 2,5,13,0
#define VER_FILEVERSION_STR "2.5.13.0\0"
#define VER_PRODUCTVERSION 2,5,13,0
#define VER_PRODUCTVERSION_STR "2.5.13\0"
// constants used in all the binaries, shouldn't need changing (until next year)
#define VER_COMPANY_NAME_STR "SIL Global\0"
#define VER_COPYRIGHT_STR "Copyright (c) 2002-2025\0"
#define VER_PRODUCT_NAME_STR "TECkit basic tools\0"
#ifndef DEBUG
#define VER_DEBUG 0
#else
#define VER_DEBUG VS_FF_DEBUG
#endif
|