2014-04-01 22:11:44 +02:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2016-11-17 05:25:23 -08:00
|
|
|
#ifndef ON
|
|
|
|
#define ON 1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef OFF
|
|
|
|
#define OFF 0
|
|
|
|
#endif
|
|
|
|
|
2014-04-01 22:11:44 +02:00
|
|
|
#define OBS_VERSION "@OBS_VERSION@"
|
2014-07-21 16:26:57 +02:00
|
|
|
#define OBS_DATA_PATH "@OBS_DATA_PATH@"
|
|
|
|
#define OBS_INSTALL_PREFIX "@OBS_INSTALL_PREFIX@"
|
2014-07-26 14:27:39 +02:00
|
|
|
#define OBS_PLUGIN_DESTINATION "@OBS_PLUGIN_DESTINATION@"
|
|
|
|
#define OBS_RELATIVE_PREFIX "@OBS_RELATIVE_PREFIX@"
|
2015-06-01 16:06:29 -07:00
|
|
|
#define OBS_UNIX_STRUCTURE @OBS_UNIX_STRUCTURE@
|
2016-11-17 05:25:23 -08:00
|
|
|
#define BUILD_CAPTIONS @BUILD_CAPTIONS@
|
2015-09-12 19:18:03 -07:00
|
|
|
#define HAVE_DBUS @HAVE_DBUS@
|
2017-05-12 23:03:44 -03:00
|
|
|
#define HAVE_PULSEAUDIO @HAVE_PULSEAUDIO@
|
2018-04-27 20:05:16 -03:00
|
|
|
#define USE_XINPUT @USE_XINPUT@
|
2020-01-22 13:56:34 +08:00
|
|
|
#define NEEDS_SIMDE @NEEDS_SIMDE@
|
2017-09-05 23:30:24 +03:00
|
|
|
#define LIBOBS_IMAGEMAGICK_DIR_STYLE_6L 6
|
|
|
|
#define LIBOBS_IMAGEMAGICK_DIR_STYLE_7GE 7
|
|
|
|
#define LIBOBS_IMAGEMAGICK_DIR_STYLE @LIBOBS_IMAGEMAGICK_DIR_STYLE@
|
2018-08-13 00:24:30 -07:00
|
|
|
|
|
|
|
/* NOTE: Release candidate version numbers internally are always the previous
|
|
|
|
* main release number! For example, if the current public release is 21.0 and
|
|
|
|
* the build is 22.0 release candidate 1, internally the build number (defined
|
|
|
|
* by LIBOBS_API_VER/etc) will always be 21.0, despite the OBS_VERSION string
|
|
|
|
* saying "22.0 RC1".
|
|
|
|
*
|
|
|
|
* If the release candidate version number is 0.0.0 and the RC number is 0,
|
|
|
|
* that means it's not a release candidate build. */
|
|
|
|
#define OBS_RELEASE_CANDIDATE_MAJOR @OBS_RELEASE_CANDIDATE_MAJOR@
|
|
|
|
#define OBS_RELEASE_CANDIDATE_MINOR @OBS_RELEASE_CANDIDATE_MINOR@
|
|
|
|
#define OBS_RELEASE_CANDIDATE_PATCH @OBS_RELEASE_CANDIDATE_PATCH@
|
|
|
|
#define OBS_RELEASE_CANDIDATE_VER \
|
|
|
|
MAKE_SEMANTIC_VERSION(OBS_RELEASE_CANDIDATE_MAJOR, \
|
|
|
|
OBS_RELEASE_CANDIDATE_MINOR, \
|
|
|
|
OBS_RELEASE_CANDIDATE_PATCH)
|
|
|
|
#define OBS_RELEASE_CANDIDATE @OBS_RELEASE_CANDIDATE@
|