I am trying to compile using the DBUILD_LIST cmake flag via the OPENCV4NODEJS_AUTOBUILD_FLAGS environment variable through the package.json, since I only want to install the "core, imgproc, imgcodecs" modules, but in the end, when I look at the libs folder, it is only installed the "core" module.
This is what I have in my package.json.
"opencv4nodejs": {
"disableAutoBuild": 0,
"autoBuildFlags": "-DBUILD_LIST=imgcodecs,core,imgproc"
}
Is there another way to compile only those modules?
in the description of the compilation it tells me that they were installed, but when I look at the variable cv in nodejs I only show the "core" module, and when I look in the folder "/node_modules/opencv-build/opencv/build/lib" only the module is core What I can do?
I am trying to compile using the DBUILD_LIST cmake flag via the OPENCV4NODEJS_AUTOBUILD_FLAGS environment variable through the package.json, since I only want to install the "core, imgproc, imgcodecs" modules, but in the end, when I look at the libs folder, it is only installed the "core" module.
This is what I have in my package.json.
"opencv4nodejs": {
"disableAutoBuild": 0,
"autoBuildFlags": "-DBUILD_LIST=imgcodecs,core,imgproc"
}
Is there another way to compile only those modules?
in the description of the compilation it tells me that they were installed, but when I look at the variable cv in nodejs I only show the "core" module, and when I look in the folder "/node_modules/opencv-build/opencv/build/lib" only the module is core What I can do?