blob: b88f4a97d517b9ce602e05c8b0788bb0c168bec2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef SPM_CONFIG_IN_H
#define SPM_CONFIG_IN_H
#cmakedefine HAVE_STRSEP 1
#cmakedefine HAVE_REALLOCARRAY 1
#define SPM_PROGRAM_PREFIX "${CMAKE_INSTALL_PREFIX}"
#define SPM_PROGRAM_BIN SPM_PROGRAM_PREFIX"/bin"
#define SPM_PROGRAM_DATA SPM_PROGRAM_PREFIX"/share"
#define SPM_PROGRAM_INCLUDE SPM_PROGRAM_PREFIX"/include"
#define SPM_PROGRAM_LIB SPM_PROGRAM_PREFIX"/lib"
#endif //SPM_CONFIG_IN_H
|