Selecting the name of the package to be created during the building process compiled OpenCV.
The packet creating proceso for distribution creates three packets being two type tar and a third compressed binary type in a shell file.
how can I select the name of these files created or intervene in this name.
For example, this were created in my build configured with the make command:
- OpenCV-unknown-armv7l.sh
- OpenCV-unknown-armv7l.tar.gz
- OpenCV-unknown-armv7l.tar.Z
Comando usado para configuração:
cmake -G "Unix Makefiles" \
-D CMAKE_CXX_COMPILER=/usr/bin/arm-linux-gnueabihf-g++ \
-D CMAKE_C_COMPILER=/usr/bin/arm-linux-gnueabihf-gcc \
-D CMAKE_BUILD_TYPE=RELEASE-NANOPI \
-D CMAKE_INSTALL_PREFIX=/usr/local \
-D WITH_TBB=ON \
-D WITH_V4L=ON \
-D WITH_QT=ON \
-D WITH_OPENGL=ON \
-D WITH_IMAGEIO=ON \
-D WITH_GSTREAMER=ON \
-D ENABLE_NEON=ON \
-D ENABLE_FAST_MATH=ON \
-D BUILD_SHARED_LIBS=OFF \
-D BUILD_NEW_PYTHON_SUPPORT=OFF \
-D BUILD_EXAMPLES=OFF \
-D BUILD_FAT_JAVA_LIB=OFF \
-D BUILD_TBB=ON \
-D BUILD_opencv_apps=OFF -D BUILD_opencv_nofree=OFF -D BUILD_opencv_java=OFF \
-D BUILD_opencv_objdetect=ON -D BUILD_opencv_core=ON -D BUILD_opencv_imgproc=ON -D BUILD_opencv_ml=ON -D BUILD_opencv_flann=OFF \
-D BUILD_opencv_highgui=ON \
-D BUILD_OPTIONAL=Off \
-D BUILD_DOCS=OFF \
-D INSTALL_C_EXAMPLES=OF \
-D INSTALL_PYTHON_EXAMPLES=OFF \
-D INSTALL_TO_MANGLED_PATHS=ON \
-D INSTALL_CREATE_DISTRIB=ON \
-D INSTALL_TESTS=OFF \
-D CMAKE_VERBOSE=ON \
..