2016-09-28 22:44:59 +02:00
|
|
|
#ifndef CONFIG_H
|
|
|
|
#define CONFIG_H
|
|
|
|
|
2021-11-08 02:13:57 +01:00
|
|
|
#define PROGRAM_NAME "${PROJECT_NAME}"
|
2020-10-26 13:16:59 +01:00
|
|
|
#define PROGRAM_VERSION "${PROJECT_VERSION}"
|
2016-09-28 22:44:59 +02:00
|
|
|
|
2022-09-18 09:15:23 +02:00
|
|
|
// We use the XDG Base Directory Specification, but may be installed anywhere.
|
|
|
|
#define PROJECT_DATADIR "${CMAKE_INSTALL_FULL_DATADIR}"
|
|
|
|
|
2016-09-28 22:44:59 +02:00
|
|
|
#cmakedefine HAVE_RESIZETERM
|
2021-07-03 23:58:05 +02:00
|
|
|
#cmakedefine WITH_FFTW
|
2021-11-07 15:47:41 +01:00
|
|
|
#cmakedefine WITH_PULSE
|
2022-08-18 01:43:41 +02:00
|
|
|
#cmakedefine WITH_X11
|
2016-09-28 22:44:59 +02:00
|
|
|
|
2021-11-08 02:13:57 +01:00
|
|
|
#endif /* ! CONFIG_H */
|