Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Michaël Roynard
gtest-constexpr-ext
Commits
4f0a08c8
Commit
4f0a08c8
authored
Jun 05, 2018
by
Michaël Roynard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Clean way to get source code
parent
2672a35a
Pipeline
#1965
failed with stage
in 46 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
conanfile.py
conanfile.py
+5
-2
No files found.
conanfile.py
View file @
4f0a08c8
from
conans
import
CMake
,
ConanFile
from
conans
import
CMake
,
ConanFile
,
tools
class
GtestconstexprextConan
(
ConanFile
):
name
=
"gtest-constexpr-ext"
...
...
@@ -11,9 +11,12 @@ class GtestconstexprextConan(ConanFile):
requires
=
"gtest/1.8.0@bincrafters/stable"
generators
=
"cmake"
exports_sources
=
"include/*"
,
"test/*"
,
"CMakeLists.txt"
no_copy_source
=
True
def
source
(
self
):
git
=
tools
.
Git
()
git
.
clone
(
self
.
url
)
def
build
(
self
):
cmake
=
CMake
(
self
)
cmake
.
configure
()
...
...
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