1/* -*- c++ -*- */ 2/* 3 * Copyright 2013 Free Software Foundation, Inc. 4 * 5 * This file is part of GNU Radio 6 * 7 * GNU Radio is free software; you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by 9 * the Free Software Foundation; either version 3, or (at your option) 10 * any later version. 11 * 12 * GNU Radio is distributed in the hope that it will be useful, 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * GNU General Public License for more details. 16 * 17 * You should have received a copy of the GNU General Public License 18 * along with GNU Radio; see the file COPYING. If not, write to 19 * the Free Software Foundation, Inc., 51 Franklin Street, 20 * Boston, MA 02110-1301, USA. 21 */ 22 23#include <afxres.h> 24 25VS_VERSION_INFO VERSIONINFO 26 FILEVERSION @MAJOR_VERSION@,@API_COMPAT@,@RC_MINOR_VERSION@,@RC_MAINT_VERSION@ 27 PRODUCTVERSION @MAJOR_VERSION@,@API_COMPAT@,@RC_MINOR_VERSION@,@RC_MAINT_VERSION@ 28 FILEFLAGSMASK 0x3fL 29#ifndef NDEBUG 30 FILEFLAGS 0x0L 31#else 32 FILEFLAGS 0x1L 33#endif 34 FILEOS VOS__WINDOWS32 35 FILETYPE VFT_DLL 36 FILESUBTYPE VFT2_DRV_INSTALLABLE 37 BEGIN 38 BLOCK "StringFileInfo" 39 BEGIN 40 BLOCK "040904b0" 41 BEGIN 42 VALUE "FileDescription", "gnuradio-runtime" 43 VALUE "FileVersion", "@VERSION@" 44 VALUE "InternalName", "gnuradio-runtime.dll" 45 VALUE "LegalCopyright", "Licensed under GPLv3 or any later version" 46 VALUE "OriginalFilename", "gnuradio-runtime.dll" 47 VALUE "ProductName", "gnuradio-runtime" 48 VALUE "ProductVersion", "@VERSION@" 49 END 50 END 51 BLOCK "VarFileInfo" 52 BEGIN 53 VALUE "Translation", 0x409, 1200 54 END 55 END 56