Skip to content
Snippets Groups Projects
Select Git revision
  • showinput
  • fading-callback-thread-fix
  • next default protected
  • removetwohundredandsixty
  • bosszero
  • weaponshadow
  • cleanupmusic
  • udmf-texture-scaling
  • levelstruct
  • polybsp
  • tc
  • udmf-nophysicsequation
  • udmf-absolutez
  • bbox
  • plinedefexectutefix
  • increasemaxunlockables
  • master
  • 2211-rc1
  • font_drawer
  • 2211-pre2
  • SRB2_release_2.2.11
  • SRB2_release_2.2.10
  • SRB2_release_2.2.9
  • SRB2_release_2.2.8
  • SRB2_release_2.2.7
  • SRB2_release_2.2.6
  • SRB2_release_2.2.5
  • SRB2_release_2.2.4
  • SRB2_release_2.2.3
  • SRB2_release_2.2.2
  • SRB2_release_2.2.1
  • SRB2_release_2.2.0
  • SRB2_release_2.1.25
  • SRB2_release_2.1.24
  • SRB2_release_2.1.23
  • SRB2_release_2.1.22
  • SRB2_release_2.1.21
  • SRB2_release_2.1.20
  • SRB2_release_2.1.19
  • SRB2_release_2.1.18
40 results

config.h.in

Blame
  • Forked from STJr / SRB2
    13925 commits behind, 2 commits ahead of the upstream repository.
    config.h.in 1.29 KiB
    /** SRB2 CMake Configuration */
    
    #ifndef __CONFIG_H__
    #define __CONFIG_H__
    
    /* 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.
     */
    
    #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}"
    #ifdef USE_PATCH_DTA
    #define ASSET_HASH_PATCH_DTA  "${SRB2_ASSET_patch.dta_HASH}"
    #endif
    
    #define SRB2_COMP_REVISION    "${SRB2_COMP_REVISION}"
    #define SRB2_COMP_BRANCH      "${SRB2_COMP_BRANCH}"
    
    #define CMAKE_ASSETS_DIR      "${CMAKE_SOURCE_DIR}/assets"
    
    #else
    
    /* Manually defined asset hashes for non-CMake builds
     * Last updated 2015 / 05 / 03
     */
    #define ASSET_HASH_SRB2_SRB   "c1b9577687f8a795104aef4600720ea7"
    #define ASSET_HASH_ZONES_DTA  "303838c6c534d9540288360fa49cca60"
    #define ASSET_HASH_PLAYER_DTA "cfca0f1c73023cbbd8f844f45480f799"
    #define ASSET_HASH_RINGS_DTA  "85901ad4bf94637e5753d2ac2c03ea26"
    #ifdef USE_PATCH_DTA
    #define ASSET_HASH_PATCH_DTA  "dbbf8bc6121618ee3be2d5b14650429b"
    #endif
    
    #endif
    #endif