You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

2 years ago
12345678910111213141516171819202122232425262728293031323334
  1. |OVERVIEW|
  2. This directory can be used if you have external modules designed for OpenViBE
  3. that you want to include within your OpenViBE build but not necessarily
  4. contribute. Contributed components should go to contrib/.
  5. |LAYOUT|
  6. Each subdirectory of the externals directory will be candidate for building
  7. in the build scripts. It must conform to the usual OpenViBE directory layout.
  8. For example you create an application "app" based on OpenViBE, and this application uses
  9. a collection of plugins "app-plugs". You might then have the following layout :
  10. openvibe-externals/
  11. + my-app/
  12. + doc/
  13. + ...
  14. + src/
  15. + CMakeLists.txt
  16. + my-app-plugs/
  17. + doc/
  18. + ...
  19. + src/
  20. + CMakeLists.txt
  21. |BUILDING|
  22. Running the usual build should include the folders in external/
  23. automatically. If it doesn't, please delete local-tmp/ and try again.
  24. vim:tw=78:ts=8:ft=help:norl: