class BUILD_INFO

(source code)

description

Build specification

notes

GENERATED FILE. Do not edit

note
	description: "Build specification"
	notes: "GENERATED FILE. Do not edit"

	author: "Finnian Reilly"
	copyright: "Copyright (c) 2001-2022 Finnian Reilly"
	contact: "finnian at eiffel hyphen loop dot com"

	license: "MIT license (See: en.wikipedia.org/wiki/MIT_License)"
	date: "2024-09-24 16:26:07 GMT (Tuesday 24th September 2024)"
	revision: "7"

class
	BUILD_INFO

inherit
	EL_BUILD_INFO

create
	make

feature -- Constants

	App_compatibility_flags: STRING = "~Win7RTM"
		-- For installed entry in registry key: CurrentVersion\AppCompatFlags\Layers
		-- Under: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT

	Build_number: NATURAL = 0

	Installation_sub_directory: DIR_PATH
		once
			Result := "Eiffel-Loop/Concurrency Demonstration"
		end

	Version_number: NATURAL = 01_00_00

end