|
12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- # This file is an example configuration of OpenViBE build system
- # By default all changes are disabled, you can un-comment any that are of interest to you
- # In order to use the file make a copy of it an rename it "CustomCMakeLists.txt"
-
- # ----------------------------------
- # USEFUL ELEMENTS
- # ----------------------------------
-
- # Uncomment the following to build documentation
- # both the global project and the specific projects are affected by this token
- #SET(SKIP_DOCUMENTATION OFF)
-
- # ----------------------------------
- # OPENVIBE
- # ----------------------------------
-
- # Optionally skip whole projects
- #SET(SKIP_KERNEL ON)
- #SET(SKIP_MODULES ON)
- #SET(SKIP_OPENVIBE ON)
- #SET(SKIP_PLUGINS ON)
- #SET(SKIP_TOOLKIT ON)
-
- # Optionally disable (or re-enable) Modules
- #SET(SKIP_MODULES_EBML ON)
- #SET(SKIP_MODULES_FS ON)
- #SET(SKIP_MODULES_SOCKET ON)
- #SET(SKIP_MODULES_STREAM OFF)
- #SET(SKIP_MODULES_SYSTEM ON)
- #SET(SKIP_MODULES_XML ON)
-
- # Optionally skip Processing Plugins
- #SET(SKIP_PLUGINS_PROCESSING_ACQUISITION ON)
- #SET(SKIP_PLUGINS_PROCESSING_CLASIFICATION ON)
- #SET(SKIP_PLUGINS_PROCESSING_EXAMPLES ON)
- #SET(SKIP_PLUGINS_PROCESSING_FILE-IO ON)
- #SET(SKIP_PLUGINS_PROCESSING_NETWORK-IO ON)
- #SET(SKIP_PLUGINS_PROCESSING_SAMPLES ON)
- #SET(SKIP_PLUGINS_PROCESSING_SIGNAL-PROCESSING ON)
- #SET(SKIP_PLUGINS_PROCESSING_SIMPLE-VISUALISATION ON)
- #SET(SKIP_PLUGINS_PROCESSING_STIMULATION ON)
- #SET(SKIP_PLUGINS_PROCESSING_STREAM-CODECS ON)
- #SET(SKIP_PLUGINS_PROCESSING_STREAMING ON)
- #SET(SKIP_PLUGINS_PROCESSING_TOOLS ON)
-
-
|