Nicole Weber 6625a8dfaa init | 3 years ago | |
---|---|---|
.. | ||
visual_gen | 3 years ago | |
.gitattributes | 3 years ago | |
.gitignore | 3 years ago | |
.gitmodules | 3 years ago | |
AUTHORS.md | 3 years ago | |
CHANGELOG.md | 3 years ago | |
CISetup.md | 3 years ago | |
COPYING | 3 years ago | |
Jenkinsfile | 3 years ago | |
README.md | 3 years ago | |
build.cmd | 3 years ago | |
build.sh | 3 years ago | |
install_dependencies.cmd | 3 years ago | |
install_dependencies.sh | 3 years ago | |
jenkins-config.xml | 3 years ago | |
launchvc.cmd | 3 years ago | |
launchvc_debug.cmd | 3 years ago | |
pack-release.sh | 3 years ago |
Build Status : | |
---|---|
Ubuntu 18.04 x64 | |
Fedora 31 x64 | |
Windows 10 x64 | |
Windows 10 x86 |
OpenViBE project is now divided into 3 parts :
The current repository, OpenViBE-meta, exist to ease the task of building these repositories together.
To build OpenViBE, follow these instructions :
This can be done using git pull git@gitlab.inria.fr:openvibe/meta.git
from command line, or with any GUI for git, like GitKraken.
Please note that you will require a recent version of git for this step; we advise to use versions above 2.0, but git 1.7 should work.
Use git submodule update --init --recursive
to fetch all submodules.
Call install_dependencies.cmd or install_dependencies.sh, depending on your system. A “dependencies” folder will be created on main directory.
If you wish to use visual studio, it will be more handy to install python and jinja2 library with :
c:\python3X\Scripts\pip.exe install jinja2
If you want to use the pygame examples, you will need python and pygame library. Pygame can be installed with
pip install jinja2
To build the whole project, execute build.cmd
(windows) or build.sh
(linux).
You will require at least version 2013 of Visual Studio, or GCC 4.8
To build the project for visual studio with both debug and release, use build.cmd --vsbuild-all
.
After building the project, the script will attempt to generate a merged solution of the 3 projects.
This requires python3 and jinja2.
If you use stock python3, you can install jinja2 like so :
c:\python3X\Scripts\pip.exe install jinja2
The merged sln will be generated in the build directory.
If you do not wish to install python, you can also use the launchvc.cmd
or launchvc_debug.cmd
scripts (Legacy)
You can update the whole directory (including submodules) with :
git pull
git submodule sync --recursive
git submodule update -–init --recursive
Aliases can be created to ease the global update process :
git config --global alias.spull '!git pull && git submodule sync --recursive && git submodule update --init --recursive'