Warning, /education/labplot/src/3rdparty/liborigin/config.h.in is written in an unsupported language. File is not indexed.

0001 /*
0002     File                 : config.h.in
0003     Description          : compile-time configuration defines
0004     --------------------------------------------------------------------
0005     SPDX-FileCopyrightText: 2010 Knut Franke <knut.franke*gmx.de (use @ for *)>
0006     SPDX-License-Identifier: GPL-2.0-or-later
0007 */
0008 
0009 
0010 #ifndef CONFIG_H
0011 #define CONFIG_H
0012 
0013 #define LIBORIGIN_VERSION_MAJOR ${PROJECT_VERSION_MAJOR}
0014 #define LIBORIGIN_VERSION_MINOR ${PROJECT_VERSION_MINOR}
0015 #define LIBORIGIN_VERSION_PATCH ${PROJECT_VERSION_PATCH}
0016 #define LIBORIGIN_VERSION ((LIBORIGIN_VERSION_MAJOR << 24) | \
0017                            (LIBORIGIN_VERSION_MINOR << 16) | \
0018                            (LIBORIGIN_VERSION_PATCH << 8) )
0019 #define LIBORIGIN_VERSION_STRING "${PROJECT_VERSION}"
0020 
0021 #endif // ifndef CONFIG_H