from conans import ConanFile, MSBuild class ExampleConan(ConanFile): name = "make-libs-list" version = "1.0.1" settings = "os", "arch", "build_type", "compiler" options = {"shared": [True, False], "st": [True, False]} default_options = {"shared": False, "st": False} exports = "*" _msvc_archs = {"x86": "x86", "x86_64": "x64"} def build(self): msbuild = MSBuild(self) msbuild.build("make-libs-list.vcxproj")