2015-01-29 00:03:41 +00:00
|
|
|
/** SRB2 CMake Configuration */
|
|
|
|
|
|
|
|
#ifndef __CONFIG_H__
|
|
|
|
#define __CONFIG_H__
|
|
|
|
|
2015-03-08 08:26:54 +00:00
|
|
|
/* DO NOT MODIFY config.h DIRECTLY! It will be overwritten by cmake.
|
|
|
|
* If you want to change a configuration option here, modify it in
|
|
|
|
* your CMakeCache.txt. config.h.in is used as a template for CMake
|
|
|
|
* variables, so you can insert them here too.
|
|
|
|
*/
|
|
|
|
|
2015-01-29 00:03:41 +00:00
|
|
|
#ifdef CMAKECONFIG
|
|
|
|
|
2017-12-07 18:26:12 +00:00
|
|
|
#define ASSET_HASH_SRB2_PK3 "${SRB2_ASSET_srb2.pk3_HASH}"
|
2015-01-29 00:03:41 +00:00
|
|
|
#define ASSET_HASH_PLAYER_DTA "${SRB2_ASSET_player.dta_HASH}"
|
2019-09-29 03:31:50 +00:00
|
|
|
#define ASSET_HASH_ZONES_PK3 "${SRB2_ASSET_zones.pk3_HASH}"
|
2016-03-10 02:30:11 +00:00
|
|
|
#ifdef USE_PATCH_DTA
|
2018-06-06 13:42:50 +00:00
|
|
|
#define ASSET_HASH_PATCH_PK3 "${SRB2_ASSET_patch.pk3_HASH}"
|
2016-03-10 02:30:11 +00:00
|
|
|
#endif
|
2015-01-29 00:03:41 +00:00
|
|
|
|
|
|
|
#define SRB2_COMP_REVISION "${SRB2_COMP_REVISION}"
|
2016-01-14 15:37:58 +00:00
|
|
|
#define SRB2_COMP_BRANCH "${SRB2_COMP_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
|
|
|
|
|
2016-03-10 02:30:11 +00:00
|
|
|
/* Manually defined asset hashes for non-CMake builds
|
2020-02-16 16:34:02 +00:00
|
|
|
* Last updated 2020 / 02 / 15 - v2.2.1 - main assets
|
2020-02-22 21:42:24 +00:00
|
|
|
* Last updated 2020 / 02 / 22 - v2.2.2 - patch.pk3
|
2020-05-10 16:16:01 +00:00
|
|
|
* Last updated 2020 / 05 / 10 - v2.2.3 - player.dta & patch.pk3
|
2020-05-11 21:40:28 +00:00
|
|
|
* Last updated 2020 / 05 / 11 - v2.2.4 - patch.pk3
|
2020-07-07 16:42:31 +00:00
|
|
|
* Last updated 2020 / 07 / 07 - v2.2.5 - player.dta & patch.pk3
|
2020-07-11 00:53:42 +00:00
|
|
|
* Last updated 2020 / 07 / 10 - v2.2.6 - player.dta & patch.pk3
|
2020-09-28 03:12:15 +00:00
|
|
|
* Last updated 2020 / 09 / 27 - v2.2.7 - patch.pk3
|
2020-10-02 23:07:15 +00:00
|
|
|
* Last updated 2020 / 10 / 02 - v2.2.8 - patch.pk3
|
2016-03-10 02:30:11 +00:00
|
|
|
*/
|
2020-02-10 02:29:46 +00:00
|
|
|
#define ASSET_HASH_SRB2_PK3 "0277c9416756627004e83cbb5b2e3e28"
|
2020-02-16 23:54:19 +00:00
|
|
|
#define ASSET_HASH_ZONES_PK3 "f7e88afb6af7996a834c7d663144bead"
|
2020-07-11 00:53:42 +00:00
|
|
|
#define ASSET_HASH_PLAYER_DTA "49dad7b24634c89728cc3e0b689e12bb"
|
2016-03-10 02:30:11 +00:00
|
|
|
#ifdef USE_PATCH_DTA
|
2020-10-02 23:07:15 +00:00
|
|
|
#define ASSET_HASH_PATCH_PK3 "466cdf60075262b3f5baa5e07f0999e8"
|
2016-03-10 02:30:11 +00:00
|
|
|
#endif
|
2015-01-29 00:03:41 +00:00
|
|
|
|
|
|
|
#endif
|
|
|
|
#endif
|