vcpkg/ports/openmvg/portfile.cmake

178 lines
7.4 KiB
CMake
Raw Normal View History

vcpkg_buildpath_length_warning(37)
#the port produces some empty dlls when building shared libraries, since some components do not export anything, breaking the internal build itself
vcpkg_check_linkage(ONLY_STATIC_LIBRARY)
2020-08-28 13:13:05 +08:00
if("software" IN_LIST FEATURES AND VCPKG_CRT_LINKAGE STREQUAL static)
message(FATAL_ERROR "OpenMVG software currently cannot be built with static CRT linking. Please open an issue if you require this feature.")
endif()
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO openMVG/openMVG
REF 74deb33d12bf275a3b3a9afc833f4760be90f031 # v1.6
SHA512 6e74effbc66f5d5e7c2d5edd7dacf3c0fa7eec1cb666244db8e4147c08d2e6faca98c1164ca1305a5013d247d479184742e5156232d4d8430615af31811e216e
PATCHES
2020-08-28 13:13:05 +08:00
build_fixes.patch
0001-eigen_3.4.0.patch
)
2020-08-28 13:13:05 +08:00
set(OpenMVG_USE_OPENMP OFF)
if("openmp" IN_LIST FEATURES)
if(VCPKG_TARGET_IS_WINDOWS)
message(WARNING "OpenMP feature is broken on Windows, disabled until fixed https://github.com/openMVG/openMVG/issues/1765")
else()
set(OpenMVG_USE_OPENMP ON)
endif()
endif()
vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS
FEATURES
opencv OpenMVG_USE_OPENCV
opencv OpenMVG_USE_OCVSIFT
software OpenMVG_BUILD_SOFTWARES
software OpenMVG_BUILD_GUI_SOFTWARES
)
# remove some deps to prevent conflict
file(REMOVE_RECURSE ${SOURCE_PATH}/src/third_party/ceres-solver
${SOURCE_PATH}/src/third_party/cxsparse
${SOURCE_PATH}/src/third_party/eigen
${SOURCE_PATH}/src/third_party/flann
${SOURCE_PATH}/src/third_party/jpeg
${SOURCE_PATH}/src/third_party/lemon
${SOURCE_PATH}/src/third_party/png
${SOURCE_PATH}/src/third_party/tiff
${SOURCE_PATH}/src/third_party/zlib)
# remove some cmake modules to force using our configs
file(REMOVE_RECURSE ${SOURCE_PATH}/src/cmakeFindModules/FindEigen.cmake
${SOURCE_PATH}/src/cmakeFindModules/FindLemon.cmake
${SOURCE_PATH}/src/cmakeFindModules/FindFlann.cmake
${SOURCE_PATH}/src/cmakeFindModules/FindCoinUtils.cmake
${SOURCE_PATH}/src/cmakeFindModules/FindClp.cmake
${SOURCE_PATH}/src/cmakeFindModules/FindOsi.cmake)
vcpkg_configure_cmake(
SOURCE_PATH ${SOURCE_PATH}/src
PREFER_NINJA
OPTIONS ${FEATURE_OPTIONS}
2020-08-28 13:13:05 +08:00
-DOpenMVG_USE_OPENMP=${OpenMVG_USE_OPENMP}
-DOpenMVG_BUILD_SHARED=OFF
-DOpenMVG_BUILD_TESTS=OFF
-DOpenMVG_BUILD_DOC=OFF
-DOpenMVG_BUILD_EXAMPLES=OFF
-DOpenMVG_BUILD_OPENGL_EXAMPLES=OFF
-DOpenMVG_BUILD_COVERAGE=OFF
-DOpenMVG_USE_INTERNAL_CLP=OFF
-DOpenMVG_USE_INTERNAL_COINUTILS=OFF
-DOpenMVG_USE_INTERNAL_OSI=OFF
-DOpenMVG_USE_INTERNAL_EIGEN=OFF
-DOpenMVG_USE_INTERNAL_CEREAL=OFF
-DOpenMVG_USE_INTERNAL_CERES=OFF
-DOpenMVG_USE_INTERNAL_FLANN=OFF
-DOpenMVG_USE_INTERNAL_LEMON=OFF
)
vcpkg_install_cmake()
[many ports] improvements for linux/wsl (#6730) * [many ports] improve compatibility with WSL and mixed case filesystems * [treehopper] express dependency on libusb, which was not working on non-win32 platforms and is still broken there * [libharu] add compatibility with non-win32 platforms * [geogram] fix openblas on linux [clapack] better integration with linux environment [visit-struct] put cmake config file in the expected folder [geogram] remove trailing underscore to enable compatibility with OpenBLAS * [openblas] playing with underscore, without success * [openblas/lapack] fix library integration * [clapack] improve target handling in cmake module * [openblas] promote self-generated config to default cmake module, otherwise internal ones thinks wrongly that openblas can also solve lapack libs * [clapack,openblas] improve libraries integration * [many ports] fix cmake unnecessary target paths, wrong config paths, empty default dependencies, unnecessary [core] tags * [suitesparse] improve integration with new lapack/openblas mechanism * [suitesparse] add no underscore postfix also for linux * [ceres] fix integration with newer openblas/lapack configs * [aws-c-event-stream] fix regression * [systemc] fix regression * [libwebp,geogram] trigger rebuild * [libwebp,pthread4w] fix regressions * [glbinding] fix cmake module installation * [globjects] disentangle unnecessary dependency from qt5 * [jasper] remove broken and unnecessary patches * [libwebp] fix regression * [many ports] avoid using BUILD_SHARED_LIBS which is uninitialized in port files * [clapack] correctly find dlls * [clapack] use a generic blas as dependency * [fizz,g2o] restore expected version * fix mistake * [many ports] remove WIN32, APPLE and UNIX (again, they keep creeping in) from ports since they are broken and usually break non-win32 ports * [libressl,openssl] do not try to build one if the other is already installed * [itk] update ref and patch to avoid regression * [libressl,openssl] implement full strategy to fix CI * [libwebp] disable components that are broken on macOS * [ogre] enable macOS build * [freeimage,jxrlib,ogre,openexr,protobuf] port patches from #5169 * [ogre] add missing install command * [ffmpeg] enable wrapper for cmake module * [ffmpeg] add avresample module finder * [ffmpeg] improve module detection and exported symbols * [ffmpeg] add variables to cache * [thrift] remove unnecessary build option * [allegro5] fix shared/static inversion * [protobuf] cleanup * [libressl] cleanup * [moos-core] cleanup * commented features must not be separated from other features, otherwise vcpkg complains * [itk] fix regression * [shogun,itk] fix regressions * [ogre] fix regression * [opusfile] add compatibility with non-win32 * [itk] fix regression * [sndfile,libsndfile] remove duplicate, redirect sndfile to libsndfile * add missing dependencies * [ismrmrd] fix regression * [ffmpeg] trigger rebuild * [clapack,openblas,libogg] fix regressions on macOS * [libtins] fix regression * force rebuild windows regressions, unable to reproduce locally * [mosquitto] enable non-win32 builds * [json-dto] force rebuild, unable to reproduce regression locally * [many ports] uniform naming and path length requests * fix regression * fix regression * [ffmpeg] fixes for downstream projects * clean up - thanks to reviewers * trigger rebuild of regressions on macOS * trigger rebuild of regressions on macOS - part2 * Add core back * Use VCPKG_CONCURRENCY * Add core back to suitesparse * Add core back to curl * Add core back to magnum * Add core back to magnum * Add core back to magnum * Add core back to cgal
2019-06-21 10:11:54 +08:00
vcpkg_fixup_cmake_targets(CONFIG_PATH share/openMVG/cmake)
2020-08-28 13:13:05 +08:00
if (NOT VCPKG_BUILD_TYPE OR VCPKG_BUILD_TYPE STREQUAL "debug")
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include ${CURRENT_PACKAGES_DIR}/debug/share)
endif()
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/include/openMVG/image/image_test
2020-08-28 13:13:05 +08:00
${CURRENT_PACKAGES_DIR}/include/openMVG/exif/image_data
${CURRENT_PACKAGES_DIR}/include/openMVG_dependencies/nonFree/sift/vl)
if(OpenMVG_BUILD_SHARED)
2020-08-28 13:13:05 +08:00
if (NOT VCPKG_BUILD_TYPE OR VCPKG_BUILD_TYPE STREQUAL "release")
# release
file(GLOB DLL_FILES ${CURRENT_PACKAGES_DIR}/lib/*.dll)
file(COPY ${DLL_FILES} DESTINATION ${CURRENT_PACKAGES_DIR}/bin)
file(REMOVE_RECURSE ${DLL_FILES})
endif()
if (NOT VCPKG_BUILD_TYPE OR VCPKG_BUILD_TYPE STREQUAL "debug")
# debug
file(GLOB DLL_FILES ${CURRENT_PACKAGES_DIR}/debug/lib/*.dll)
file(COPY ${DLL_FILES} DESTINATION ${CURRENT_PACKAGES_DIR}/debug/bin)
file(REMOVE_RECURSE ${DLL_FILES})
endif()
endif()
vcpkg_copy_pdbs()
2020-08-28 13:13:05 +08:00
if("software" IN_LIST FEATURES)
if(VCPKG_TARGET_IS_OSX)
vcpkg_copy_tools(TOOL_NAMES
openMVG_main_AlternativeVO.app
ui_openMVG_MatchesViewer.app
)
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/bin/openMVG_main_AlternativeVO.app)
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/bin/ui_openMVG_MatchesViewer.app)
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/bin/openMVG_main_AlternativeVO.app)
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/bin/ui_openMVG_MatchesViewer.app)
else()
vcpkg_copy_tools(AUTO_CLEAN TOOL_NAMES
openMVG_main_AlternativeVO
ui_openMVG_MatchesViewer
)
endif()
vcpkg_copy_tools(AUTO_CLEAN TOOL_NAMES
openMVG_main_ChangeLocalOrigin
openMVG_main_ColHarmonize
openMVG_main_ComputeClusters
openMVG_main_ComputeFeatures
openMVG_main_ComputeMatches
openMVG_main_ComputeSfM_DataColor
openMVG_main_ComputeStructureFromKnownPoses
openMVG_main_ConvertList
openMVG_main_ConvertSfM_DataFormat
openMVG_main_evalQuality
openMVG_main_ExportCameraFrustums
openMVG_main_exportKeypoints
openMVG_main_exportMatches
openMVG_main_exportTracks
openMVG_main_ExportUndistortedImages
openMVG_main_FrustumFiltering
openMVG_main_geodesy_registration_to_gps_position
openMVG_main_GlobalSfM
openMVG_main_IncrementalSfM
openMVG_main_IncrementalSfM2
openMVG_main_ListMatchingPairs
openMVG_main_MatchesToTracks
openMVG_main_openMVG2Agisoft
openMVG_main_openMVG2CMPMVS
openMVG_main_openMVG2Colmap
openMVG_main_openMVG2MESHLAB
openMVG_main_openMVG2MVE2
openMVG_main_openMVG2MVSTEXTURING
openMVG_main_openMVG2NVM
openMVG_main_openMVG2openMVS
openMVG_main_openMVG2PMVS
openMVG_main_openMVG2WebGL
openMVG_main_openMVGSpherical2Cubic
openMVG_main_PointsFiltering
openMVG_main_SfMInit_ImageListing
openMVG_main_SfMInit_ImageListingFromKnownPoses
openMVG_main_SfM_Localization
openMVG_main_SplitMatchFileIntoMatchFiles
ui_openMVG_control_points_registration
)
if("opencv" IN_LIST FEATURES)
vcpkg_copy_tools(AUTO_CLEAN TOOL_NAMES
openMVG_main_ComputeFeatures_OpenCV
)
endif()
file(COPY ${SOURCE_PATH}/src/openMVG/exif/sensor_width_database/sensor_width_camera_database.txt DESTINATION ${CURRENT_PACKAGES_DIR}/tools/${PORT})
set(OPENMVG_SOFTWARE_SFM_BUILD_DIR ${CURRENT_INSTALLED_DIR}/tools/${PORT})
set(OPENMVG_CAMERA_SENSOR_WIDTH_DIRECTORY ${CURRENT_INSTALLED_DIR}/tools/${PORT})
configure_file("${SOURCE_PATH}/src/software/SfM/tutorial_demo.py.in" "${CURRENT_PACKAGES_DIR}/tools/${PORT}/tutorial_demo.py" @ONLY)
configure_file("${SOURCE_PATH}/src/software/SfM/SfM_GlobalPipeline.py.in" "${CURRENT_PACKAGES_DIR}/tools/${PORT}/SfM_GlobalPipeline.py" @ONLY)
configure_file("${SOURCE_PATH}/src/software/SfM/SfM_SequentialPipeline.py.in" "${CURRENT_PACKAGES_DIR}/tools/${PORT}/SfM_SequentialPipeline.py" @ONLY)
message(STATUS "To use tools, you need graphviz installed and manually added to path (to have neato executable)")
endif()
# Handle copyright
2020-02-12 09:23:12 +08:00
file(INSTALL ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright)