Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
git2
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
git2
Commits
5c40456b
Unverified
Commit
5c40456b
authored
Jun 16, 2020
by
Alexander Ovchinnikov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Enable building git2.rc resource script with GCC
parent
d6c62852
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
4 deletions
+17
-4
src/CMakeLists.txt
+4
-2
src/win32/git2.rc
+13
-2
No files found.
src/CMakeLists.txt
View file @
5c40456b
...
...
@@ -278,10 +278,12 @@ list(SORT SRC_H)
# On Windows use specific platform sources
if
(
WIN32 AND NOT CYGWIN
)
if
(
MSVC
)
SET
(
WIN_RC
"win32/git2.rc"
)
if
(
NOT
MSVC
)
ADD_DEFINITIONS
(
-DGCC_WINDRES
)
endif
()
SET
(
WIN_RC
"win32/git2.rc"
)
file
(
GLOB SRC_OS win32/*.c win32/*.h
)
list
(
SORT SRC_OS
)
elseif
(
AMIGA
)
...
...
src/win32/git2.rc
View file @
5c40456b
...
...
@@ -9,7 +9,18 @@
# define LIBGIT2_COMMENTS "For more information visit http://libgit2.github.com/"
#endif
#ifdef GCC_WINDRES
# define STRINGIZE(x) #x
# define STRINGIZE_(x) STRINGIZE(x)
#else
# define STRINGIZE_(x) x
#endif
#ifdef GCC_WINDRES
VS_VERSION_INFO VERSIONINFO
#else
VS_VERSION_INFO VERSIONINFO MOVEABLE IMPURE LOADONCALL DISCARDABLE
#endif
FILEVERSION LIBGIT2_VER_MAJOR,LIBGIT2_VER_MINOR,LIBGIT2_VER_REVISION,LIBGIT2_VER_PATCH
PRODUCTVERSION LIBGIT2_VER_MAJOR,LIBGIT2_VER_MINOR,LIBGIT2_VER_REVISION,LIBGIT2_VER_PATCH
FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
...
...
@@ -29,9 +40,9 @@ BEGIN
BEGIN
VALUE "FileDescription", "libgit2 - the Git linkable library\0"
VALUE "FileVersion", LIBGIT2_VERSION "\0"
VALUE "InternalName",
LIBGIT2_FILENAME
".dll\0"
VALUE "InternalName",
STRINGIZE_(LIBGIT2_FILENAME)
".dll\0"
VALUE "LegalCopyright", "Copyright (C) the libgit2 contributors. All rights reserved.\0"
VALUE "OriginalFilename",
LIBGIT2_FILENAME
".dll\0"
VALUE "OriginalFilename",
STRINGIZE_(LIBGIT2_FILENAME)
".dll\0"
VALUE "ProductName", "libgit2\0"
VALUE "ProductVersion", LIBGIT2_VERSION "\0"
VALUE "Comments", LIBGIT2_COMMENTS "\0"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment