2015-01-29 00:03:41 +00:00
|
|
|
/** SRB2 CMake Configuration */
|
|
|
|
|
|
|
|
#ifndef __CONFIG_H__
|
|
|
|
#define __CONFIG_H__
|
|
|
|
|
|
|
|
#ifdef CMAKECONFIG
|
|
|
|
|
|
|
|
#define ASSET_HASH_SRB2_SRB "${SRB2_ASSET_srb2.srb_HASH}"
|
|
|
|
#define ASSET_HASH_PLAYER_DTA "${SRB2_ASSET_player.dta_HASH}"
|
|
|
|
#define ASSET_HASH_RINGS_DTA "${SRB2_ASSET_rings.dta_HASH}"
|
|
|
|
#define ASSET_HASH_ZONES_DTA "${SRB2_ASSET_zones.dta_HASH}"
|
|
|
|
#define ASSET_HASH_PATCH_DTA "${SRB2_ASSET_patch.dta_HASH}"
|
|
|
|
|
|
|
|
#define SRB2_COMP_REVISION "${SRB2_COMP_REVISION}"
|
2015-03-05 02:15:57 +00:00
|
|
|
#define SRB2_GIT_DESCRIBE "${SRB2_GIT_DESCRIBE}"
|
|
|
|
#define SRB2_GIT_BRANCH "${SRB2_GIT_BRANCH}"
|
2015-01-29 00:03:41 +00:00
|
|
|
|
2015-01-29 05:02:18 +00:00
|
|
|
#define CMAKE_ASSETS_DIR "${CMAKE_SOURCE_DIR}/assets"
|
|
|
|
|
2015-01-29 00:03:41 +00:00
|
|
|
#else
|
|
|
|
|
|
|
|
#define ASSET_HASH_SRB2_SRB "c1b9577687f8a795104aef4600720ea7"
|
|
|
|
#define ASSET_HASH_ZONES_DTA "303838c6c534d9540288360fa49cca60"
|
|
|
|
#define ASSET_HASH_PLAYER_DTA "cfca0f1c73023cbbd8f844f45480f799"
|
|
|
|
#define ASSET_HASH_RINGS_DTA "85901ad4bf94637e5753d2ac2c03ea26"
|
|
|
|
|
|
|
|
#endif
|
|
|
|
#endif
|