Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
H
hpp-fcl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Guilhem Saurel
hpp-fcl
Commits
d4c9674d
Commit
d4c9674d
authored
5 years ago
by
Gabriele Buondonno
Browse files
Options
Downloads
Patches
Plain Diff
Set BUILD_PYTHON_INTERFACE to OFF by default and set it manually ON in the CI
parent
b948c619
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.travis.yml
+2
-1
2 additions, 1 deletion
.travis.yml
CMakeLists.txt
+1
-1
1 addition, 1 deletion
CMakeLists.txt
with
3 additions
and
2 deletions
.travis.yml
+
2
−
1
View file @
d4c9674d
...
...
@@ -5,6 +5,7 @@ env:
-
CTEST_PARALLEL_LEVEL=4
-
CTEST_OUTPUT_ON_FAILURE=1
-
CXX_FLAGS_DEBUG="-O1"
-
BUILD_PYTHON_INTERFACE=ON
matrix
:
include
:
...
...
@@ -97,7 +98,7 @@ script:
-
cd build
# Configure
-
cmake -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DCMAKE_CXX_FLAGS=-w -DCMAKE_CXX_FLAGS_DEBUG=${CXX_FLAGS_DEBUG} ..
-
cmake -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DCMAKE_CXX_FLAGS=-w -DCMAKE_CXX_FLAGS_DEBUG=${CXX_FLAGS_DEBUG}
-DBUILD_PYTHON_INTERFACE=${BUILD_PYTHON_INTERFACE}
..
# Build
-
make -j4
...
...
This diff is collapsed.
Click to expand it.
CMakeLists.txt
+
1
−
1
View file @
d4c9674d
...
...
@@ -58,7 +58,7 @@ IF(APPLE)
endif
(
"
${
isSystemDir
}
"
STREQUAL
"-1"
)
ENDIF
(
APPLE
)
OPTION
(
BUILD_PYTHON_INTERFACE
"Build the python bindings"
O
N
)
OPTION
(
BUILD_PYTHON_INTERFACE
"Build the python bindings"
O
FF
)
# Tell CMake that we compute the PROJECT_VERSION manually.
CMAKE_POLICY
(
SET CMP0048 OLD
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment