Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[question] The imported project "...\conan_eigen.props" was not found #15334

Closed
1 task done
sinall opened this issue Dec 22, 2023 · 9 comments · Fixed by #15626
Closed
1 task done

[question] The imported project "...\conan_eigen.props" was not found #15334

sinall opened this issue Dec 22, 2023 · 9 comments · Fixed by #15626
Assignees
Milestone

Comments

@sinall
Copy link

sinall commented Dec 22, 2023

What is your question?

I'm using generators = "MSBuildDeps" in conanfile.py.

But there is error:
error : The imported project "...\conan_eigen.props" was not found. Confirm that the expression in the Import declaration "conan_eigen.props" is correct, and that the file exists on disk. ...\conan_opencv_opencv_core_debug_x64.props

Have you read the CONTRIBUTING guide?

  • I've read the CONTRIBUTING guide
@memsharded memsharded self-assigned this Dec 22, 2023
@memsharded
Copy link
Member

Hi @sinall

A bit more of detail would be needed to know what is happening:

  • The Conan version (very important)
  • A conanfile to reproduce (as minimal as possible)
  • The command you are using (likely conan install, but just in case, with the arguments)
  • The full command output
  • The list of all generated files inside the generators folder

Many thanks!

@sinall
Copy link
Author

sinall commented Dec 22, 2023

@memsharded Let me know if this is enough. I think maybe it is related with opencv and eigen.

The Conan version (2.0)
A conanfile to reproduce (as minimal as possible)

from conan import ConanFile
import os

class MyConan(ConanFile):
	settings = "os", "compiler", "build_type", "arch"

	generators = "MSBuildDeps"

	def requirements(self):
		self.requires("opencv/4.8.1")
		self.requires("libtiff/4.4.0", override=True)
		self.requires("freetype/2.12.1", override=True)

The command you are using (likely conan install, but just in case, with the arguments)

conan install . -of conaninfo/x64/Debug -pr:a debug-x64 --build missing

The full command output

The list of all generated files inside the generators folder

@memsharded
Copy link
Member

A couple of quick notes:

  • -pr:a debug-x64 you typically don't want to use "debug" for your "build" context with your tool-requires. That would mean that you are running your potential tool-requires (tools, cmake, compilers, etc) in "debug" mode, which will be much slower
  • The MSBuildDeps is a multi-config layout, it is not recommended to use a -of conaninfo/x64/Debug output folder with an specialized path. Just use the generator feature. You might use a layout() method with vs_layout(self), that implements the common VS projects layout
  • You also typically want to use MSBuildToolchain and inject it in your project, specially if you are going to make a package out of it, and will manage different settings

Looking forward your output and list of generated files

@sinall
Copy link
Author

sinall commented Dec 22, 2023

@memsharded

I have lots of dependencies, only the 'opencv' dependency has this problem. The issue is that conandoesn't generate conan_eigen.props' but opencv related props refers to this file.

output log is too big, see attachment.
new 40.txt

generated files:

**Mode                 LastWriteTime         Length Name
----                 -------------         ------ ----
-a----        2023/12/23      0:09             54 conanbuild.bat
-a----        2023/12/23      0:09            585 conanbuildenv-debug-x86_64.bat
-a----        2023/12/23      0:09            272 conandeps.props
-a----        2023/12/23      0:09             52 conanrun.bat
-a----        2023/12/23      0:09            666 conanrunenv-debug-x86_64.bat
-a----        2023/12/23      0:09            388 conan_ade.props
-a----        2023/12/23      0:09           1875 conan_ade_debug_x64.props
-a----        2023/12/23      0:09            819 conan_ade_vars_debug_x64.props
-a----        2023/12/23      0:09            631 conan_brotli.props
-a----        2023/12/23      0:09            436 conan_brotli_brotlicommon.props
-a----        2023/12/23      0:09           2067 conan_brotli_brotlicommon_debug_x64.props
-a----        2023/12/23      0:09           1166 conan_brotli_brotlicommon_vars_debug_x64.props
-a----        2023/12/23      0:09            427 conan_brotli_brotlidec.props
-a----        2023/12/23      0:09           2155 conan_brotli_brotlidec_debug_x64.props
-a----        2023/12/23      0:09           1100 conan_brotli_brotlidec_vars_debug_x64.props
-a----        2023/12/23      0:09            427 conan_brotli_brotlienc.props
-a----        2023/12/23      0:09           2155 conan_brotli_brotlienc_debug_x64.props
-a----        2023/12/23      0:09           1100 conan_brotli_brotlienc_vars_debug_x64.props
-a----        2023/12/23      0:09            394 conan_bzip2.props
-a----        2023/12/23      0:09           1899 conan_bzip2_debug_x64.props
-a----        2023/12/23      0:09            863 conan_bzip2_vars_debug_x64.props
-a----        2023/12/23      0:09           1185 conan_ffmpeg.props
-a----        2023/12/23      0:09            421 conan_ffmpeg_avcodec.props
-a----        2023/12/23      0:09           3543 conan_ffmpeg_avcodec_debug_x64.props
-a----        2023/12/23      0:09           1091 conan_ffmpeg_avcodec_vars_debug_x64.props
-a----        2023/12/23      0:09            424 conan_ffmpeg_avdevice.props
-a----        2023/12/23      0:09           2827 conan_ffmpeg_avdevice_debug_x64.props
-a----        2023/12/23      0:09           1165 conan_ffmpeg_avdevice_vars_debug_x64.props
-a----        2023/12/23      0:09            424 conan_ffmpeg_avfilter.props
-a----        2023/12/23      0:09           2813 conan_ffmpeg_avfilter_debug_x64.props
-a----        2023/12/23      0:09           1078 conan_ffmpeg_avfilter_vars_debug_x64.props
-a----        2023/12/23      0:09            424 conan_ffmpeg_avformat.props
-a----        2023/12/23      0:09           2569 conan_ffmpeg_avformat_debug_x64.props
-a----        2023/12/23      0:09           1090 conan_ffmpeg_avformat_vars_debug_x64.props
-a----        2023/12/23      0:09            418 conan_ffmpeg_avutil.props
-a----        2023/12/23      0:09           1995 conan_ffmpeg_avutil_debug_x64.props
-a----        2023/12/23      0:09           1056 conan_ffmpeg_avutil_vars_debug_x64.props
-a----        2023/12/23      0:09            424 conan_ffmpeg_postproc.props
-a----        2023/12/23      0:09           2131 conan_ffmpeg_postproc_debug_x64.props
-a----        2023/12/23      0:09           1078 conan_ffmpeg_postproc_vars_debug_x64.props
-a----        2023/12/23      0:09            430 conan_ffmpeg_swresample.props
-a----        2023/12/23      0:09           2155 conan_ffmpeg_swresample_debug_x64.props
-a----        2023/12/23      0:09           1122 conan_ffmpeg_swresample_vars_debug_x64.props
-a----        2023/12/23      0:09            421 conan_ffmpeg_swscale.props
-a----        2023/12/23      0:09           2119 conan_ffmpeg_swscale_debug_x64.props
-a----        2023/12/23      0:09           1056 conan_ffmpeg_swscale_vars_debug_x64.props
-a----        2023/12/23      0:09            403 conan_freetype.props
-a----        2023/12/23      0:09           2321 conan_freetype_debug_x64.props
-a----        2023/12/23      0:09            932 conan_freetype_vars_debug_x64.props
-a----        2023/12/23      0:09            509 conan_imath.props
-a----        2023/12/23      0:09            433 conan_imath_imath_config.props
-a----        2023/12/23      0:09           2055 conan_imath_imath_config_debug_x64.props
-a----        2023/12/23      0:09           1128 conan_imath_imath_config_vars_debug_x64.props
-a----        2023/12/23      0:09            424 conan_imath_imath_lib.props
-a----        2023/12/23      0:09           2141 conan_imath_imath_lib_debug_x64.props
-a----        2023/12/23      0:09           1081 conan_imath_imath_lib_vars_debug_x64.props
-a----        2023/12/23      0:09            397 conan_jasper.props
-a----        2023/12/23      0:09           2011 conan_jasper_debug_x64.props
-a----        2023/12/23      0:09            887 conan_jasper_vars_debug_x64.props
-a----        2023/12/23      0:09            391 conan_jbig.props
-a----        2023/12/23      0:09           1887 conan_jbig_debug_x64.props
-a----        2023/12/23      0:09            842 conan_jbig_vars_debug_x64.props
-a----        2023/12/23      0:09            413 conan_libdeflate.props
-a----        2023/12/23      0:09            445 conan_libdeflate__libdeflate.props
-a----        2023/12/23      0:09           2103 conan_libdeflate__libdeflate_debug_x64.props
-a----        2023/12/23      0:09           1230 conan_libdeflate__libdeflate_vars_debug_x64.props
-a----        2023/12/23      0:09            405 conan_libfdk_aac.props
-a----        2023/12/23      0:09            433 conan_libfdk_aac_fdk-aac.props
-a----        2023/12/23      0:09           2055 conan_libfdk_aac_fdk-aac_debug_x64.props
-a----        2023/12/23      0:09           1140 conan_libfdk_aac_fdk-aac_vars_debug_x64.props
-a----        2023/12/23      0:09            403 conan_libiconv.props
-a----        2023/12/23      0:09           1935 conan_libiconv_debug_x64.props
-a----        2023/12/23      0:09            940 conan_libiconv_vars_debug_x64.props
-a----        2023/12/23      0:09            400 conan_libjpeg.props
-a----        2023/12/23      0:09           1923 conan_libjpeg_debug_x64.props
-a----        2023/12/23      0:09            954 conan_libjpeg_vars_debug_x64.props
-a----        2023/12/23      0:09            409 conan_libmp3lame.props
-a----        2023/12/23      0:09           1959 conan_libmp3lame_debug_x64.props
-a----        2023/12/23      0:09            972 conan_libmp3lame_vars_debug_x64.props
-a----        2023/12/23      0:09            397 conan_libpng.props
-a----        2023/12/23      0:09           2005 conan_libpng_debug_x64.props
-a----        2023/12/23      0:09            897 conan_libpng_vars_debug_x64.props
-a----        2023/12/23      0:09            400 conan_libtiff.props
-a----        2023/12/23      0:09           2613 conan_libtiff_debug_x64.props
-a----        2023/12/23      0:09            919 conan_libtiff_vars_debug_x64.props
-a----        2023/12/23      0:09            397 conan_libvpx.props
-a----        2023/12/23      0:09           1911 conan_libvpx_debug_x64.props
-a----        2023/12/23      0:09            887 conan_libvpx_vars_debug_x64.props
-a----        2023/12/23      0:09            857 conan_libwebp.props
-a----        2023/12/23      0:09            427 conan_libwebp_sharpyuv.props
-a----        2023/12/23      0:09           2031 conan_libwebp_sharpyuv_debug_x64.props
-a----        2023/12/23      0:09           1099 conan_libwebp_sharpyuv_vars_debug_x64.props
-a----        2023/12/23      0:09            415 conan_libwebp_webp.props
-a----        2023/12/23      0:09            436 conan_libwebp_webpdecoder.props
-a----        2023/12/23      0:09           2067 conan_libwebp_webpdecoder_debug_x64.props
-a----        2023/12/23      0:09           1165 conan_libwebp_webpdecoder_vars_debug_x64.props
-a----        2023/12/23      0:09            430 conan_libwebp_webpdemux.props
-a----        2023/12/23      0:09           2153 conan_libwebp_webpdemux_debug_x64.props
-a----        2023/12/23      0:09           1121 conan_libwebp_webpdemux_vars_debug_x64.props
-a----        2023/12/23      0:09            424 conan_libwebp_webpmux.props
-a----        2023/12/23      0:09           2129 conan_libwebp_webpmux_debug_x64.props
-a----        2023/12/23      0:09           1077 conan_libwebp_webpmux_vars_debug_x64.props
-a----        2023/12/23      0:09           2101 conan_libwebp_webp_debug_x64.props
-a----        2023/12/23      0:09           1011 conan_libwebp_webp_vars_debug_x64.props
-a----        2023/12/23      0:09            400 conan_libx264.props
-a----        2023/12/23      0:09           1923 conan_libx264_debug_x64.props
-a----        2023/12/23      0:09            906 conan_libx264_vars_debug_x64.props
-a----        2023/12/23      0:09            400 conan_libx265.props
-a----        2023/12/23      0:09           1923 conan_libx265_debug_x64.props
-a----        2023/12/23      0:09            906 conan_libx265_vars_debug_x64.props
-a----        2023/12/23      0:09            375 conan_ogg.props
-a----        2023/12/23      0:09            409 conan_ogg_ogglib.props
-a----        2023/12/23      0:09           1959 conan_ogg_ogglib_debug_x64.props
-a----        2023/12/23      0:09            966 conan_ogg_ogglib_vars_debug_x64.props
-a----        2023/12/23      0:09           4189 conan_opencv.props
-a----        2023/12/23      0:09            442 conan_opencv_opencv_calib3d.props
-a----        2023/12/23      0:09            460 conan_opencv_opencv_calib3d_alias.props
-a----        2023/12/23      0:09           2291 conan_opencv_opencv_calib3d_alias_debug_x64.props
-a----        2023/12/23      0:09           1267 conan_opencv_opencv_calib3d_alias_vars_debug_x64.props
-a----        2023/12/23      0:09           2695 conan_opencv_opencv_calib3d_debug_x64.props
-a----        2023/12/23      0:09           1306 conan_opencv_opencv_calib3d_vars_debug_x64.props
-a----        2023/12/23      0:09            433 conan_opencv_opencv_core.props
-a----        2023/12/23      0:09            451 conan_opencv_opencv_core_alias.props
-a----        2023/12/23      0:09           2249 conan_opencv_opencv_core_alias_debug_x64.props
-a----        2023/12/23      0:09           1207 conan_opencv_opencv_core_alias_vars_debug_x64.props
-a----        2023/12/23      0:09           2245 conan_opencv_opencv_core_debug_x64.props
-a----        2023/12/23      0:09           1234 conan_opencv_opencv_core_vars_debug_x64.props
-a----        2023/12/23      0:09            430 conan_opencv_opencv_dnn.props
-a----        2023/12/23      0:09            448 conan_opencv_opencv_dnn_alias.props
-a----        2023/12/23      0:09           2235 conan_opencv_opencv_dnn_alias_debug_x64.props
-a----        2023/12/23      0:09           1187 conan_opencv_opencv_dnn_alias_vars_debug_x64.props
-a----        2023/12/23      0:09           2395 conan_opencv_opencv_dnn_debug_x64.props
-a----        2023/12/23      0:09           1210 conan_opencv_opencv_dnn_vars_debug_x64.props
-a----        2023/12/23      0:09            451 conan_opencv_opencv_features2d.props
-a----        2023/12/23      0:09            469 conan_opencv_opencv_features2d_alias.props
-a----        2023/12/23      0:09           2333 conan_opencv_opencv_features2d_alias_debug_x64.props
-a----        2023/12/23      0:09           1327 conan_opencv_opencv_features2d_alias_vars_debug_x64.props
-a----        2023/12/23      0:09           2475 conan_opencv_opencv_features2d_debug_x64.props
-a----        2023/12/23      0:09           1378 conan_opencv_opencv_features2d_vars_debug_x64.props
-a----        2023/12/23      0:09            436 conan_opencv_opencv_flann.props
-a----        2023/12/23      0:09            454 conan_opencv_opencv_flann_alias.props
-a----        2023/12/23      0:09           2263 conan_opencv_opencv_flann_alias_debug_x64.props
-a----        2023/12/23      0:09           1227 conan_opencv_opencv_flann_alias_vars_debug_x64.props
-a----        2023/12/23      0:09           2189 conan_opencv_opencv_flann_debug_x64.props
-a----        2023/12/23      0:09           1258 conan_opencv_opencv_flann_vars_debug_x64.props
-a----        2023/12/23      0:09            433 conan_opencv_opencv_gapi.props
-a----        2023/12/23      0:09            451 conan_opencv_opencv_gapi_alias.props
-a----        2023/12/23      0:09           2249 conan_opencv_opencv_gapi_alias_debug_x64.props
-a----        2023/12/23      0:09           1207 conan_opencv_opencv_gapi_alias_vars_debug_x64.props
-a----        2023/12/23      0:09           2527 conan_opencv_opencv_gapi_debug_x64.props
-a----        2023/12/23      0:09           1257 conan_opencv_opencv_gapi_vars_debug_x64.props
-a----        2023/12/23      0:09            442 conan_opencv_opencv_highgui.props
-a----        2023/12/23      0:09            460 conan_opencv_opencv_highgui_alias.props
-a----        2023/12/23      0:09           2291 conan_opencv_opencv_highgui_alias_debug_x64.props
-a----        2023/12/23      0:09           1267 conan_opencv_opencv_highgui_alias_vars_debug_x64.props
-a----        2023/12/23      0:09           2601 conan_opencv_opencv_highgui_debug_x64.props
-a----        2023/12/23      0:09           1373 conan_opencv_opencv_highgui_vars_debug_x64.props
-a----        2023/12/23      0:09            448 conan_opencv_opencv_imgcodecs.props
-a----        2023/12/23      0:09            466 conan_opencv_opencv_imgcodecs_alias.props
-a----        2023/12/23      0:09           2319 conan_opencv_opencv_imgcodecs_alias_debug_x64.props
-a----        2023/12/23      0:09           1307 conan_opencv_opencv_imgcodecs_alias_vars_debug_x64.props
-a----        2023/12/23      0:09           2933 conan_opencv_opencv_imgcodecs_debug_x64.props
-a----        2023/12/23      0:09           1354 conan_opencv_opencv_imgcodecs_vars_debug_x64.props
-a----        2023/12/23      0:09            442 conan_opencv_opencv_imgproc.props
-a----        2023/12/23      0:09            460 conan_opencv_opencv_imgproc_alias.props
-a----        2023/12/23      0:09           2291 conan_opencv_opencv_imgproc_alias_debug_x64.props
-a----        2023/12/23      0:09           1267 conan_opencv_opencv_imgproc_alias_vars_debug_x64.props
-a----        2023/12/23      0:09           2213 conan_opencv_opencv_imgproc_debug_x64.props
-a----        2023/12/23      0:09           1306 conan_opencv_opencv_imgproc_vars_debug_x64.props
-a----        2023/12/23      0:09            427 conan_opencv_opencv_ml.props
-a----        2023/12/23      0:09            445 conan_opencv_opencv_ml_alias.props
-a----        2023/12/23      0:09           2221 conan_opencv_opencv_ml_alias_debug_x64.props
-a----        2023/12/23      0:09           1167 conan_opencv_opencv_ml_alias_vars_debug_x64.props
-a----        2023/12/23      0:09           2153 conan_opencv_opencv_ml_debug_x64.props
-a----        2023/12/23      0:09           1186 conan_opencv_opencv_ml_vars_debug_x64.props
-a----        2023/12/23      0:09            448 conan_opencv_opencv_objdetect.props
-a----        2023/12/23      0:09            466 conan_opencv_opencv_objdetect_alias.props
-a----        2023/12/23      0:09           2319 conan_opencv_opencv_objdetect_alias_debug_x64.props
-a----        2023/12/23      0:09           1307 conan_opencv_opencv_objdetect_alias_vars_debug_x64.props
-a----        2023/12/23      0:09           2709 conan_opencv_opencv_objdetect_debug_x64.props
-a----        2023/12/23      0:09           1354 conan_opencv_opencv_objdetect_vars_debug_x64.props
-a----        2023/12/23      0:09            436 conan_opencv_opencv_photo.props
-a----        2023/12/23      0:09            454 conan_opencv_opencv_photo_alias.props
-a----        2023/12/23      0:09           2263 conan_opencv_opencv_photo_alias_debug_x64.props
-a----        2023/12/23      0:09           1227 conan_opencv_opencv_photo_alias_vars_debug_x64.props
-a----        2023/12/23      0:09           2195 conan_opencv_opencv_photo_debug_x64.props
-a----        2023/12/23      0:09           1258 conan_opencv_opencv_photo_vars_debug_x64.props
-a----        2023/12/23      0:09            448 conan_opencv_opencv_stitching.props
-a----        2023/12/23      0:09            466 conan_opencv_opencv_stitching_alias.props
-a----        2023/12/23      0:09           2319 conan_opencv_opencv_stitching_alias_debug_x64.props
-a----        2023/12/23      0:09           1307 conan_opencv_opencv_stitching_alias_vars_debug_x64.props
-a----        2023/12/23      0:09           2725 conan_opencv_opencv_stitching_debug_x64.props
-a----        2023/12/23      0:09           1354 conan_opencv_opencv_stitching_vars_debug_x64.props
-a----        2023/12/23      0:09            436 conan_opencv_opencv_video.props
-a----        2023/12/23      0:09            442 conan_opencv_opencv_videoio.props
-a----        2023/12/23      0:09            460 conan_opencv_opencv_videoio_alias.props
-a----        2023/12/23      0:09           2291 conan_opencv_opencv_videoio_alias_debug_x64.props
-a----        2023/12/23      0:09           1267 conan_opencv_opencv_videoio_alias_vars_debug_x64.props
-a----        2023/12/23      0:09           2807 conan_opencv_opencv_videoio_debug_x64.props
-a----        2023/12/23      0:09           1306 conan_opencv_opencv_videoio_vars_debug_x64.props
-a----        2023/12/23      0:09            454 conan_opencv_opencv_video_alias.props
-a----        2023/12/23      0:09           2263 conan_opencv_opencv_video_alias_debug_x64.props
-a----        2023/12/23      0:09           1227 conan_opencv_opencv_video_alias_vars_debug_x64.props
-a----        2023/12/23      0:09           2443 conan_opencv_opencv_video_debug_x64.props
-a----        2023/12/23      0:09           1258 conan_opencv_opencv_video_vars_debug_x64.props
-a----        2023/12/23      0:09           1363 conan_openexr.props
-a----        2023/12/23      0:09            436 conan_openexr_openexr_iex.props
-a----        2023/12/23      0:09            454 conan_openexr_openexr_iexconfig.props
-a----        2023/12/23      0:09           2139 conan_openexr_openexr_iexconfig_debug_x64.props
-a----        2023/12/23      0:09           1275 conan_openexr_openexr_iexconfig_vars_debug_x64.props
-a----        2023/12/23      0:09           2203 conan_openexr_openexr_iex_debug_x64.props
-a----        2023/12/23      0:09           1163 conan_openexr_openexr_iex_vars_debug_x64.props
-a----        2023/12/23      0:09            454 conan_openexr_openexr_ilmthread.props
-a----        2023/12/23      0:09            472 conan_openexr_openexr_ilmthreadconfig.props
-a----        2023/12/23      0:09           2211 conan_openexr_openexr_ilmthreadconfig_debug_x64.props
-a----        2023/12/23      0:09           1401 conan_openexr_openexr_ilmthreadconfig_vars_debug_x64.props
-a----        2023/12/23      0:09           2411 conan_openexr_openexr_ilmthread_debug_x64.props
-a----        2023/12/23      0:09           1295 conan_openexr_openexr_ilmthread_vars_debug_x64.props
-a----        2023/12/23      0:09            448 conan_openexr_openexr_openexr.props
-a----        2023/12/23      0:09            466 conan_openexr_openexr_openexrconfig.props
-a----        2023/12/23      0:09           2187 conan_openexr_openexr_openexrconfig_debug_x64.props
-a----        2023/12/23      0:09           1359 conan_openexr_openexr_openexrconfig_vars_debug_x64.props
-a----        2023/12/23      0:09            460 conan_openexr_openexr_openexrcore.props
-a----        2023/12/23      0:09           2401 conan_openexr_openexr_openexrcore_debug_x64.props
-a----        2023/12/23      0:09           1339 conan_openexr_openexr_openexrcore_vars_debug_x64.props
-a----        2023/12/23      0:09            460 conan_openexr_openexr_openexrutil.props
-a----        2023/12/23      0:09           2295 conan_openexr_openexr_openexrutil_debug_x64.props
-a----        2023/12/23      0:09           1339 conan_openexr_openexr_openexrutil_vars_debug_x64.props
-a----        2023/12/23      0:09           2611 conan_openexr_openexr_openexr_debug_x64.props
-a----        2023/12/23      0:09           1251 conan_openexr_openexr_openexr_vars_debug_x64.props
-a----        2023/12/23      0:09            403 conan_openh264.props
-a----        2023/12/23      0:09           1935 conan_openh264_debug_x64.props
-a----        2023/12/23      0:09            931 conan_openh264_vars_debug_x64.props
-a----        2023/12/23      0:09            403 conan_openjpeg.props
-a----        2023/12/23      0:09           1935 conan_openjpeg_debug_x64.props
-a----        2023/12/23      0:09            941 conan_openjpeg_vars_debug_x64.props
-a----        2023/12/23      0:09            497 conan_openssl.props
-a----        2023/12/23      0:09            421 conan_openssl_crypto.props
-a----        2023/12/23      0:09           2101 conan_openssl_crypto_debug_x64.props
-a----        2023/12/23      0:09           1117 conan_openssl_crypto_vars_debug_x64.props
-a----        2023/12/23      0:09            412 conan_openssl_ssl.props
-a----        2023/12/23      0:09           2085 conan_openssl_ssl_debug_x64.props
-a----        2023/12/23      0:09            993 conan_openssl_ssl_vars_debug_x64.props
-a----        2023/12/23      0:09            381 conan_opus.props
-a----        2023/12/23      0:09            415 conan_opus_libopus.props
-a----        2023/12/23      0:09           1983 conan_opus_libopus_debug_x64.props
-a----        2023/12/23      0:09           1010 conan_opus_libopus_vars_debug_x64.props
-a----        2023/12/23      0:09            525 conan_protobuf.props
-a----        2023/12/23      0:09            439 conan_protobuf_libprotobuf.props
-a----        2023/12/23      0:09           2173 conan_protobuf_libprotobuf_debug_x64.props
-a----        2023/12/23      0:09           1187 conan_protobuf_libprotobuf_vars_debug_x64.props
-a----        2023/12/23      0:09            433 conan_protobuf_libprotoc.props
-a----        2023/12/23      0:09           2181 conan_protobuf_libprotoc_debug_x64.props
-a----        2023/12/23      0:09           1143 conan_protobuf_libprotoc_vars_debug_x64.props
-a----        2023/12/23      0:09            394 conan_quirc.props
-a----        2023/12/23      0:09           1899 conan_quirc_debug_x64.props
-a----        2023/12/23      0:09            865 conan_quirc_vars_debug_x64.props
-a----        2023/12/23      0:09            887 conan_vorbis.props
-a----        2023/12/23      0:09            445 conan_vorbis_vorbisenc-alias.props
-a----        2023/12/23      0:09           2221 conan_vorbis_vorbisenc-alias_debug_x64.props
-a----        2023/12/23      0:09           1212 conan_vorbis_vorbisenc-alias_vars_debug_x64.props
-a----        2023/12/23      0:09            427 conan_vorbis_vorbisenc.props
-a----        2023/12/23      0:09           2151 conan_vorbis_vorbisenc_debug_x64.props
-a----        2023/12/23      0:09           1100 conan_vorbis_vorbisenc_vars_debug_x64.props
-a----        2023/12/23      0:09            448 conan_vorbis_vorbisfile-alias.props
-a----        2023/12/23      0:09           2235 conan_vorbis_vorbisfile-alias_debug_x64.props
-a----        2023/12/23      0:09           1233 conan_vorbis_vorbisfile-alias_vars_debug_x64.props
-a----        2023/12/23      0:09            430 conan_vorbis_vorbisfile.props
-a----        2023/12/23      0:09           2163 conan_vorbis_vorbisfile_debug_x64.props
-a----        2023/12/23      0:09           1122 conan_vorbis_vorbisfile_vars_debug_x64.props
-a----        2023/12/23      0:09            430 conan_vorbis_vorbismain.props
-a----        2023/12/23      0:09           2135 conan_vorbis_vorbismain_debug_x64.props
-a----        2023/12/23      0:09           1118 conan_vorbis_vorbismain_vars_debug_x64.props
-a----        2023/12/23      0:09            403 conan_xz_utils.props
-a----        2023/12/23      0:09           1935 conan_xz_utils_debug_x64.props
-a----        2023/12/23      0:09            943 conan_xz_utils_vars_debug_x64.props
-a----        2023/12/23      0:09            391 conan_zlib.props
-a----        2023/12/23      0:09           1887 conan_zlib_debug_x64.props
-a----        2023/12/23      0:09            842 conan_zlib_vars_debug_x64.props
-a----        2023/12/23      0:09            381 conan_zstd.props
-a----        2023/12/23      0:09            415 conan_zstd_zstdlib.props
-a----        2023/12/23      0:09           1983 conan_zstd_zstdlib_debug_x64.props
-a----        2023/12/23      0:09           1017 conan_zstd_zstdlib_vars_debug_x64.props
-a----        2023/12/23      0:09             65 deactivate_conanbuild.bat
-a----        2023/12/23      0:09             63 deactivate_conanrun.bat
```**

@memsharded
Copy link
Member

The link seems incorrect, it is linking the issue itself, not an attachment, could you please try again?

I am thinking this seems a bug in MSBuildDeps generator, not handling correctly the transitive skipped binaries, but it would be great to have the full output to validate it.

@sinall
Copy link
Author

sinall commented Dec 23, 2023

@memsharded The attachment is fixed.
I have to explicitly add self.requires("eigen/3.4.0") to make it work.

@sinall
Copy link
Author

sinall commented Dec 23, 2023

@memsharded
Another problem, if some dependency is defined with override, it will not work correctly.
In my use case, it reports header file not found.

@memsharded
Copy link
Member

It seems your log is truncated, it is missing the initial part. I am interested in the graph computation and information from the conan install command, but it seems the log starts later in the build part.

@memsharded
Copy link
Member

This should be fixed by #15626, to be in next 2.1 release. Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants