You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
380 B
C
16 lines
380 B
C
#ifndef CONFIG_H
|
|
#define CONFIG_H
|
|
|
|
#define PROGRAM_NAME "${PROJECT_NAME}"
|
|
#define PROGRAM_VERSION "${PROJECT_VERSION}"
|
|
|
|
// We use the XDG Base Directory Specification, but may be installed anywhere.
|
|
#define PROJECT_DATADIR "${CMAKE_INSTALL_FULL_DATADIR}"
|
|
|
|
#cmakedefine HAVE_RESIZETERM
|
|
#cmakedefine WITH_FFTW
|
|
#cmakedefine WITH_PULSE
|
|
#cmakedefine WITH_X11
|
|
|
|
#endif /* ! CONFIG_H */
|