-
Notifications
You must be signed in to change notification settings - Fork 328
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CMakeLists.txt: Fill in the Windows file information (version, name,
copyright, year). Signed-off-by: Alexandra Trifan <Alexandra.Trifan@analog.com>
- Loading branch information
1 parent
854471e
commit 227e067
Showing
4 changed files
with
45 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
#include <windows.h> | ||
LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT | ||
VS_VERSION_INFO VERSIONINFO | ||
BEGIN | ||
BLOCK "StringFileInfo" | ||
BEGIN | ||
BLOCK "040904E4" | ||
BEGIN | ||
VALUE "CompanyName", "Analog Devices" | ||
VALUE "FileDescription", "libiio - Library for interface to IIO devices" | ||
VALUE "InternalName", "libiio" | ||
VALUE "LegalCopyright", "Copyright 2015-@BUILD_YEAR@ ADI and other contributors" | ||
VALUE "LegalTrademarks", "http://www.gnu.org/licenses/lgpl-2.1.html" | ||
VALUE "ProductName", "libiio" | ||
VALUE "ProductVersion", "@LIBIIO_VERSION_MAJOR@.@LIBIIO_VERSION_MINOR@-g@LIBIIO_VERSION_GIT@" | ||
VALUE "OriginalFilename", "@LIBIIO_ORIGINAL_FILENAME@" | ||
END | ||
END | ||
|
||
BLOCK "VarFileInfo" | ||
BEGIN | ||
VALUE "Translation", 0x409, 1252 | ||
END | ||
END |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters