windows-nt/Source/XPSP1/NT/base/prerelease.inc

28 lines
649 B
PHP
Raw Normal View History

2020-09-26 03:20:57 -05:00
#
# This file is used to control build options that should only appear in
# internal releases, and NOT the beta or RTM releases. This controls
# features such as the GUI mode command prompt and the Win9x upgrade
# autostress option.
#
# To change, simply set PRERELEASE to 1 for private builds, or 0 for beta
# or RTM builds.
#
# **CHANGES HERE WILL REQUIRE A CLEAN BUILD OF THE SETUP, pnp and ntdll components **
#
!ifndef PRERELEASE
PRERELEASE=0
!endif
!ifndef PRERELEASE_IDWLOG
PRERELEASE_IDWLOG=0
!endif
!if $(PRERELEASE)
C_DEFINES=$(C_DEFINES) -DPRERELEASE
!endif
!if $(PRERELEASE_IDWLOG)
C_DEFINES=$(C_DEFINES) -DPRERELEASE_IDWLOG
!endif