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
d4df288d
Commit
d4df288d
authored
Jan 08, 2013
by
Vicent Martí
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1207 from ethomson/cmake_comment_len_sanity
keep comments at < 80 chars
parents
368a2b4e
d335e73a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
12 deletions
+13
-12
CMakeLists.txt
+13
-12
No files found.
CMakeLists.txt
View file @
d4df288d
...
...
@@ -23,14 +23,14 @@ OPTION( BUILD_EXAMPLES "Build library usage example apps" OFF )
OPTION
(
TAGS
"Generate tags"
OFF
)
OPTION
(
PROFILE
"Generate profiling information"
OFF
)
IF
(
MSVC
)
# This option is only availalbe when building with MSVC. By default,
libgit2 is
#
build using the stdcall calling convention, as that's what the CLR expects by
# default and how the Windows API is built.
# This option is only availalbe when building with MSVC. By default,
#
libgit2 is build using the stdcall calling convention, as that's what
#
the CLR expects by
default and how the Windows API is built.
#
# If you are writing a C or C++ program and want to link to libgit2, you
have to
# either:
# If you are writing a C or C++ program and want to link to libgit2, you
#
have to
either:
# - Add /Gz to the compiler options of _your_ program / library.
# - Turn this o
ption o
ff by invoking CMake with the "-DSTDCALL=Off" argument.
# - Turn this off by invoking CMake with the "-DSTDCALL=Off" argument.
#
OPTION
(
STDCALL
"Build libgit2 with the __stdcall convention"
ON
)
ENDIF
()
...
...
@@ -52,11 +52,11 @@ FUNCTION(TARGET_OS_LIBRARIES target)
ENDIF
()
ENDFUNCTION
()
# For the MSVC IDE, this function splits up the source files like windows
explorer does.
#
This is esp. useful with the libgit2_clar project, were usually 2 or more files sha
re
#
the same name.
#
Sadly, this file grouping is a per-directory option in cmake and not per-target, resulting
#
in
empty virtual folders "tests-clar" for the git2.dll
# For the MSVC IDE, this function splits up the source files like windows
#
explorer does. This is esp. useful with the libgit2_clar project, we
re
#
usually 2 or more files share the same name. Sadly, this file grouping
#
is a per-directory option in cmake and not per-target, resulting in
# empty virtual folders "tests-clar" for the git2.dll
FUNCTION
(
MSVC_SPLIT_SOURCES target
)
IF
(
MSVC_IDE
)
GET_TARGET_PROPERTY
(
sources
${
target
}
SOURCES
)
...
...
@@ -119,7 +119,8 @@ ENDIF()
# Optional external dependency: zlib
IF
(
NOT ZLIB_LIBRARY
)
# It's optional, but FIND_PACKAGE gives a warning that looks more like an error.
# It's optional, but FIND_PACKAGE gives a warning that looks more like an
# error.
FIND_PACKAGE
(
ZLIB QUIET
)
ENDIF
()
IF
(
ZLIB_FOUND
)
...
...
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