Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
alta
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
5
Issues
5
List
Boards
Labels
Service Desk
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
alta
alta
Commits
2d732c96
Commit
2d732c96
authored
May 02, 2014
by
Laurent Belcour
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adding example configuration scripts.
parent
d160af39
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
228 additions
and
0 deletions
+228
-0
configs/qt/quadprog.prf
configs/qt/quadprog.prf
+6
-0
configs/scons/config-linux-gcc.py
configs/scons/config-linux-gcc.py
+74
-0
configs/scons/config-linux-macos-clang.py
configs/scons/config-linux-macos-clang.py
+74
-0
configs/scons/config-linux-macos-gcc.py
configs/scons/config-linux-macos-gcc.py
+74
-0
No files found.
configs/qt/quadprog.prf
0 → 100644
View file @
2d732c96
# Configuration file for the QuadProg++ package present in the
# ${ALTA}/external/quadprog++ directory provided with the ALTA
# library. You need to have the env variable ALTA defined.
INCLUDEPATH += $$(ALTA)/external/quadprog++
LIBS += -L$$(ALTA)/external/build/lib -lquadprog++
configs/scons/config-linux-gcc.py
0 → 100644
View file @
2d732c96
import
os
,
sys
##----------------------------------------------------------------##
## This file describes required and optional arguments to ALTA ##
## compilation. If you want to manualy tune the use of an already ##
## present library, uncomment the according lines. ##
##----------------------------------------------------------------##
## Compilators build flags
##
CXX
=
'g++'
CCFLAGS
=
[
'-O3'
,
'-Wall'
,
'-m64'
]
LINKFLAGS
=
[]
## OpenMP flags
##
OPENMP_FLAGS
=
[
'-fopenmp'
]
OPENMP_LIBS
=
[
'gomp'
]
## OpenEXR library
##
OPENEXR_INC
=
[
'/usr/include/OpenEXR'
]
OPENEXR_DIR
=
[
'/usr/lib'
]
OPENEXR_LIB
=
[
'Half'
,
'IlmImf'
,
'IlmThread'
]
## QUADPROG library
##
## You have to specify the directory of the QuadProg library
##
QUADPROG_INC
=
[
'#external/quadprog++'
]
QUADPROG_DIR
=
[
'#external/build/lib'
]
QUADPROG_LIBS
=
[
'quadprog++'
]
## CERES library
##
## You have to specify both the directory of the CERES library
## and the glog library
##
CERES_INC
=
[
'#external/build/include'
]
CERES_DIR
=
[
'#external/build/lib'
]
CERES_LIBS
=
[
'ceres'
,
'glog'
]
CERES_OPT_LIBS
=
[
'gomp'
,
'lapack'
,
'blas'
]
## NlOpt library
##
## You have to specify the directory of the NlOpt library
##
NLOPT_INC
=
[
'#external/build/include'
]
NLOPT_DIR
=
[
'#external/build/lib'
]
NLOPT_LIBS
=
[
'nlopt'
]
NLOPT_OPT_LIBS
=
[]
## coin IpOpt library
##
## You have to specify the directory of the IpOpt library
##
IPOPT_INC
=
[
'#external/build/include'
]
IPOPT_DIR
=
[
'#external/build/lib'
]
IPOPT_LIBS
=
[
'ipopt'
]
IPOPT_OPT_LIBS
=
[]
## MATLAB library and Engine
##
#MATLAB_INC = ['/Applications/MATLAB_R2014a.app/extern/include/']
#MATLAB_DIR = ['/Applications/MATLAB_R2014a.app/bin/maci64/']
#MATLAB_LIBS = ['eng', 'mex','mat']
configs/scons/config-linux-macos-clang.py
0 → 100644
View file @
2d732c96
import
os
,
sys
##----------------------------------------------------------------##
## This file describes required and optional arguments to ALTA ##
## compilation. If you want to manualy tune the use of an already ##
## present library, uncomment the according lines. ##
##----------------------------------------------------------------##
## Compilators build flags
##
CXX
=
'clang'
CCFLAGS
=
[
'-O3'
,
'-Wall'
,
'-m64'
]
LINKFLAGS
=
[]
## OpenMP flags
##
OPENMP_FLAGS
=
[]
OPENMP_LIBS
=
[]
## OpenEXR library
##
#OPENEXR_INC = ['/usr/include/OpenEXR']
#OPENEXR_DIR = ['/usr/lib']
#OPENEXR_LIB = ['Half', 'IlmImf', 'IlmThread']
## QUADPROG library
##
## You have to specify the directory of the QuadProg library
##
QUADPROG_INC
=
[
'#external/quadprog++'
]
QUADPROG_DIR
=
[
'#external/build/lib'
]
QUADPROG_LIBS
=
[
'quadprog++'
]
## CERES library
##
## You have to specify both the directory of the CERES library
## and the glog library
##
CERES_INC
=
[
'#external/build/include'
]
CERES_DIR
=
[
'#external/build/lib'
]
CERES_LIBS
=
[
'ceres'
,
'glog'
]
CERES_OPT_LIBS
=
[
'gomp'
,
'lapack'
,
'blas'
]
## NlOpt library
##
## You have to specify the directory of the NlOpt library
##
NLOPT_INC
=
[
'#external/build/include'
]
NLOPT_DIR
=
[
'#external/build/lib'
]
NLOPT_LIBS
=
[
'nlopt'
]
NLOPT_OPT_LIBS
=
[]
## coin IpOpt library
##
## You have to specify the directory of the IpOpt library
##
IPOPT_INC
=
[
'#external/build/include'
]
IPOPT_DIR
=
[
'#external/build/lib'
]
IPOPT_LIBS
=
[
'ipopt'
]
IPOPT_OPT_LIBS
=
[]
## MATLAB library and Engine
##
MATLAB_INC
=
[
'/Applications/MATLAB_R2014a.app/extern/include/'
]
MATLAB_DIR
=
[
'/Applications/MATLAB_R2014a.app/bin/maci64/'
]
MATLAB_LIBS
=
[
'eng'
,
'mex'
,
'mat'
]
configs/scons/config-linux-macos-gcc.py
0 → 100644
View file @
2d732c96
import
os
,
sys
##----------------------------------------------------------------##
## This file describes required and optional arguments to ALTA ##
## compilation. If you want to manualy tune the use of an already ##
## present library, uncomment the according lines. ##
##----------------------------------------------------------------##
## Compilators build flags
##
CXX
=
'g++'
CCFLAGS
=
[
'-O3'
,
'-Wall'
,
'-m64'
]
LINKFLAGS
=
[]
## OpenMP flags
##
OPENMP_FLAGS
=
[
'-fopenmp'
]
OPENMP_LIBS
=
[
'gomp'
]
## OpenEXR library
##
#OPENEXR_INC = ['/usr/include/OpenEXR']
#OPENEXR_DIR = ['/usr/lib']
#OPENEXR_LIB = ['Half', 'IlmImf', 'IlmThread']
## QUADPROG library
##
## You have to specify the directory of the QuadProg library
##
QUADPROG_INC
=
[
'#external/quadprog++'
]
QUADPROG_DIR
=
[
'#external/build/lib'
]
QUADPROG_LIBS
=
[
'quadprog++'
]
## CERES library
##
## You have to specify both the directory of the CERES library
## and the glog library
##
CERES_INC
=
[
'#external/build/include'
]
CERES_DIR
=
[
'#external/build/lib'
]
CERES_LIBS
=
[
'ceres'
,
'glog'
]
CERES_OPT_LIBS
=
[
'gomp'
,
'lapack'
,
'blas'
]
## NlOpt library
##
## You have to specify the directory of the NlOpt library
##
NLOPT_INC
=
[
'#external/build/include'
]
NLOPT_DIR
=
[
'#external/build/lib'
]
NLOPT_LIBS
=
[
'nlopt'
]
NLOPT_OPT_LIBS
=
[]
## coin IpOpt library
##
## You have to specify the directory of the IpOpt library
##
IPOPT_INC
=
[
'#external/build/include'
]
IPOPT_DIR
=
[
'#external/build/lib'
]
IPOPT_LIBS
=
[
'ipopt'
]
IPOPT_OPT_LIBS
=
[]
## MATLAB library and Engine
##
MATLAB_INC
=
[
'/Applications/MATLAB_R2014a.app/extern/include/'
]
MATLAB_DIR
=
[
'/Applications/MATLAB_R2014a.app/bin/maci64/'
]
MATLAB_LIBS
=
[
'eng'
,
'mex'
,
'mat'
]
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