Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Create your CMAKE build directory in your root nifi-minifi-cpp source folder. Traditionally, this will be build.
  2. Change to the build directory ( cd build ) and type CMAKE .. to enable all extensions. To disable any extension, enter the CMAKE option before the prior parent dir 
    1. e.g.  user $ cmake -DDISABLE_CURL=TRUE -DDISABLE_ROCKSDB=TRUE -DDISABLE_LIBARCHIVE=TRUE ..
  3. This will disable the extensions you've specified. The command, above, will disable all extensions. 

...