~ubuntu-branches/ubuntu/wily/liblas/wily

« back to all changes in this revision

Viewing changes to src/Version.rc

  • Committer: Bazaar Package Importer
  • Author(s): Francesco Paolo Lovergine
  • Date: 2009-10-02 12:36:21 UTC
  • Revision ID: james.westby@ubuntu.com-20091002123621-xrf0hhzxbwloga43
Tags: upstream-1.2.1
ImportĀ upstreamĀ versionĀ 1.2.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/******************************************************************************
 
2
 * $Id$
 
3
 *
 
4
 * Project:  libLAS - http://liblas.org - A BSD library for LAS format data.
 
5
 * Purpose:  libLAS DLL registration information
 
6
 * Author:   Howard Butler, hobu.inc@gmail.com
 
7
 *
 
8
 ******************************************************************************
 
9
 * This script is derived from the GDAL Version.rc script in the GDAL 
 
10
 * source code.  The copyright on the file was as follows:
 
11
 
 
12
 * Project:  GDAL Core
 
13
 * Purpose:  GDAL DLL registration information. 
 
14
 * Author:   Martin Daly (Cadcorp)
 
15
 *
 
16
 * Copyright assignment provided by Martin Daly by email, "Be my guest.  Fame!  
 
17
 * At last!  Best not let it go to my head, eh?"
 
18
 *
 
19
 * Copyright (c) 2005, Frank Warmerdam <warmerdam@pobox.com>
 
20
 * 
 
21
 * All rights reserved.
 
22
 * 
 
23
 * 
 
24
 * Permission is hereby granted, free of charge, to any person obtaining a
 
25
 * copy of this software and associated documentation files (the "Software"),
 
26
 * to deal in the Software without restriction, including without limitation
 
27
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
 
28
 * and/or sell copies of the Software, and to permit persons to whom the
 
29
 * Software is furnished to do so, subject to the following conditions:
 
30
 * 
 
31
 * The above copyright notice and this permission notice shall be included
 
32
 * in all copies or substantial portions of the Software.
 
33
 * 
 
34
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
 
35
 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 
36
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
 
37
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 
38
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 
39
 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
 
40
 * DEALINGS IN THE SOFTWARE.
 
41
 * 
 
42
 ****************************************************************************/
 
43
 
 
44
 
 
45
#define APSTUDIO_HIDDEN_SYMBOLS
 
46
#include <windows.h>
 
47
#undef APSTUDIO_HIDDEN_SYMBOLS
 
48
#include <winver.h>
 
49
 
 
50
#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_NEU)
 
51
#ifdef _WIN32
 
52
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
 
53
#pragma code_page(1252)
 
54
#endif //_WIN32
 
55
 
 
56
#include "las_version.h"
 
57
 
 
58
#ifndef _MAC
 
59
 
 
60
/////////////////////////////////////////////////////////////////////////////
 
61
//
 
62
// Version
 
63
//
 
64
 
 
65
VS_VERSION_INFO VERSIONINFO
 
66
 FILEVERSION LIBLAS_VERSION_MAJOR,LIBLAS_VERSION_MINOR,LIBLAS_VERSION_REV,LIBLAS_VERSION_BUILD
 
67
 PRODUCTVERSION LIBLAS_VERSION_MAJOR,LIBLAS_VERSION_MINOR,LIBLAS_VERSION_REV,LIBLAS_VERSION_BUILD
 
68
 FILEFLAGSMASK 0x3fL
 
69
#ifdef _DEBUG
 
70
 FILEFLAGS 0x1L
 
71
#else
 
72
 FILEFLAGS 0x0L
 
73
#endif
 
74
 FILEOS 0x4L
 
75
 FILETYPE 0x2L
 
76
 FILESUBTYPE 0x0L
 
77
BEGIN
 
78
    BLOCK "StringFileInfo"
 
79
    BEGIN
 
80
        BLOCK "000004b0"
 
81
        BEGIN
 
82
            VALUE "CompanyName", "Hobu, Inc.\0"
 
83
            VALUE "FileDescription", "libLAS - LAS 1.0/1.1 ASPRS LiDAR data translation toolset\0"
 
84
            VALUE "FileVersion", LIBLAS_RELEASE_NAME "\0"
 
85
            VALUE "InternalName", "libLAS\0"
 
86
            VALUE "LegalCopyright", "See LICENSE.TXT"
 
87
            VALUE "ProductName", "libLAS\0"
 
88
            VALUE "ProductVersion", LIBLAS_RELEASE_NAME "\0"
 
89
            VALUE "WebPage", "http://liblas.org/\0"
 
90
        END
 
91
    END
 
92
    BLOCK "VarFileInfo"
 
93
    BEGIN
 
94
        VALUE "Translation", 0x0, 1200
 
95
    END
 
96
END
 
97
 
 
98
#endif    // !_MAC
 
99
 
 
100
#endif    // Neutral resources