Nicole Weber 6625a8dfaa init | 3 years ago | |
---|---|---|
.. | ||
applications | 3 years ago | |
build-tool | 3 years ago | |
cmake-modules | 3 years ago | |
common | 3 years ago | |
dependencies-source | 3 years ago | |
documentation | 3 years ago | |
externals | 3 years ago | |
kernel | 3 years ago | |
modules | 3 years ago | |
openvibe | 3 years ago | |
plugins | 3 years ago | |
scripts | 3 years ago | |
toolkit | 3 years ago | |
unit-test | 3 years ago | |
validation-test | 3 years ago | |
.gitattributes | 3 years ago | |
.gitignore | 3 years ago | |
CMakeLists.txt | 3 years ago | |
COPYING.md | 3 years ago | |
CustomCMakeLists.txt-skeleton | 3 years ago | |
INSTALL.md | 3 years ago | |
README.md | 3 years ago |
OpenViBE SDK is a core software platform for the design, test and use of Brain-Computer Interfaces. It aims to have a certifiable kernel to be used in medical devices.
The project repository is composed of several software modules. The repository basically looks like this :
+ <openvibe> (API / specifications)
+ <kernel> (kernel implementation)
+ <toolkit> (development help components)
+ <applications> (OpenViBE user applications)
+ <plugins> (OpenViBE plugin collections)
+ <samples>
+ <acquisition>
+ ...
+ <modules> (abstraction and portability components)
+ <ebml>
+ <socket>
+ ...
+-- cmake-modules (cmake FindXXX and helpers)
+ <data>
+ <openvibe> (configuration data)
+ <resources> (test resources)
+ <scripts>
+ <unit-test> (code-level unit tests)
+ <unit-toolkit> (internal unit testing framework)
+ <validation-test> (integration/validation tests)
+ <python-toolkit>
Each software module is organized as a UNIX-like tree (empty folders not included):
+ <bin> (any pre-compiled binaries)
+ <include> (target folder for API headers)
+ <lib> (any pre-compiled libraries)
+ <share> (shared file folder for all data)
+ <src> (source code of the module)
+ <doc> (documentation files for the module)
+ <test> (unit test source code for the module)
Please refer to the COPYING.md file to get details regarding the OpenViBE license.
Please refer to the INSTALL.md file for instructions on how to build the platform.
WARNING: These are the initial naming rules of the project. For an updated version, pleaser refer to OpenViBE Coding Rules.
Use AGPL-3 header for public tests and confidential header for private tests.
To add tests to a module that is already tested, just add the test file and modify the test driver CMakeLists.txt accordingly.
If you wish to test a new module, you will have to create a new test driver in unit-test/.
Create a new directory with some tests and a CMakeLists.txt (just look at other tests to get insights on tests structure).
Add driver directory to directory to be processed in root directory CMakeLists.txt.
Just add data in the test directory and modify test CMakeLists.txt accordingly.
There should be no reason to add ctest validation tests. New validation tests use Robot Framework. @FIXME CERT Rename repository ? Check “Adding Robot Framework Test” section in certivibe-test repository for more details.