https://github.com/Kitware/CMake
Revision 7113b943463d4a9c9df7d7385856394cbcfe8de7 authored by Brad King on 25 June 2019, 18:35:27 UTC, committed by Brad King on 25 June 2019, 18:35:27 UTC
2 parent s 9334a4b + eda4c43
Raw File
Tip revision: 7113b943463d4a9c9df7d7385856394cbcfe8de7 authored by Brad King on 25 June 2019, 18:35:27 UTC
Merge branch 'ninja-nvcc-rsp' into release-3.15
Tip revision: 7113b94
CMakeVersion.rc.in
/* Distributed under the OSI-approved BSD 3-Clause License.  See accompanying
   file Copyright.txt or https://cmake.org/licensing for details.  */

1               VERSIONINFO
FILEVERSION     @CMake_RCVERSION@
PRODUCTVERSION  @CMake_RCVERSION@
BEGIN
    BLOCK "StringFileInfo"
    BEGIN
        BLOCK "040904E4"
        BEGIN
            VALUE "FileVersion",      "@CMake_RCVERSION_STR@\0"
            VALUE "ProductVersion",   "@CMake_RCVERSION_STR@\0"
        END
    END

    BLOCK "VarFileInfo"
    BEGIN
        /* The following line should only be modified for localized versions.     */
        /* It consists of any number of WORD,WORD pairs, with each pair           */
        /* describing a language,codepage combination supported by the file.      */
        /*                                                                        */
        /* For example, a file might have values "0x409,1252" indicating that it  */
        /* supports English language (0x409) in the Windows ANSI codepage (1252). */

        VALUE "Translation", 0x409, 1252
    END
END
back to top