aboutsummaryrefslogtreecommitdiff
path: root/src/cmake_variables.h.in
blob: 0347d6a154d568a96addf0125f9fa1a6cc94be21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef CPROJ_TEMPLATE_H
#define CPROJ_TEMPLATE_H

#ifdef __GNUC__
#define UNUSED(x) UNUSED_##x __attribute__((__unused__))
#else
#define UNUSED(x) UNUSED_##x
#endif

#ifdef __GNUC__
#define UNUSED_FUNCTION(x) __attribute__((__unused__)) UNUSED_##x
#else
#define UNUSED_FUNCTION(x) UNUSED_##x
#endif

#define CMAKE_PROJECT_VERSION "@PROJECT_VERSION@"
#define CMAKE_PROJECT_NAME "@PROJECT_NAME@"

#endif