Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
eos
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
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
Richard Torenvliet
eos
Commits
26a88a7f
Commit
26a88a7f
authored
8 years ago
by
Patrik Huber
Browse files
Options
Downloads
Patches
Plain Diff
Added GENERATE_MATLAB_BINDINGS CMake option
parent
3f751ae3
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CMakeLists.txt
+3
-0
3 additions, 0 deletions
CMakeLists.txt
initial_cache.cmake.template
+1
-0
1 addition, 0 deletions
initial_cache.cmake.template
with
4 additions
and
0 deletions
CMakeLists.txt
+
3
−
0
View file @
26a88a7f
...
@@ -62,6 +62,9 @@ option(BUILD_DOCUMENTATION "Build the library documentation." OFF)
...
@@ -62,6 +62,9 @@ option(BUILD_DOCUMENTATION "Build the library documentation." OFF)
message
(
STATUS
"BUILD_DOCUMENTATION:
${
BUILD_DOCUMENTATION
}
"
)
message
(
STATUS
"BUILD_DOCUMENTATION:
${
BUILD_DOCUMENTATION
}
"
)
option
(
GENERATE_PYTHON_BINDINGS
"Build python bindings. Needs BUILD_UTILS enabled too."
OFF
)
option
(
GENERATE_PYTHON_BINDINGS
"Build python bindings. Needs BUILD_UTILS enabled too."
OFF
)
message
(
STATUS
"GENERATE_PYTHON_BINDINGS:
${
GENERATE_PYTHON_BINDINGS
}
"
)
message
(
STATUS
"GENERATE_PYTHON_BINDINGS:
${
GENERATE_PYTHON_BINDINGS
}
"
)
option
(
GENERATE_MATLAB_BINDINGS
"Build Matlab bindings. Requires Matlab with the compiler installed or the Matlab Compiler Runtime."
OFF
)
message
(
STATUS
"GENERATE_MATLAB_BINDINGS:
${
GENERATE_MATLAB_BINDINGS
}
"
)
# Build a CPack driven installer package:
# Build a CPack driven installer package:
include
(
InstallRequiredSystemLibraries
)
# This module will include any runtime libraries that are needed by the project for the current platform
include
(
InstallRequiredSystemLibraries
)
# This module will include any runtime libraries that are needed by the project for the current platform
...
...
This diff is collapsed.
Click to expand it.
initial_cache.cmake.template
+
1
−
0
View file @
26a88a7f
...
@@ -31,3 +31,4 @@ set(BUILD_CERES_EXAMPLE OFF CACHE BOOL "Build the fit-model-ceres example (requi
...
@@ -31,3 +31,4 @@ set(BUILD_CERES_EXAMPLE OFF CACHE BOOL "Build the fit-model-ceres example (requi
set(BUILD_UTILS OFF CACHE BOOL "Build utility applications." FORCE)
set(BUILD_UTILS OFF CACHE BOOL "Build utility applications." FORCE)
set(BUILD_DOCUMENTATION OFF CACHE BOOL "Build the library documentation." FORCE)
set(BUILD_DOCUMENTATION OFF CACHE BOOL "Build the library documentation." FORCE)
set(GENERATE_PYTHON_BINDINGS OFF CACHE BOOL "Build python bindings. Needs BUILD_UTILS enabled too." FORCE)
set(GENERATE_PYTHON_BINDINGS OFF CACHE BOOL "Build python bindings. Needs BUILD_UTILS enabled too." FORCE)
set(GENERATE_MATLAB_BINDINGS OFF CACHE BOOL "Build Matlab bindings. Requires Matlab with the compiler installed or the Matlab Compiler Runtime." FORCE)
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