Hazel icon indicating copy to clipboard operation
Hazel copied to clipboard

Package Manager like conan 2.0 or 1.0 for 3rd party vendors ?

Open jaibeer72 opened this issue 2 years ago • 0 comments

Is your feature request related to a problem? Please describe

Right now when we do setup.bat or any sort of setup the main issues I have noticed

  • Vulkan Requires to be pre-installed or the user is prompted to install a specific version #654
  • We have a Setup vulkan.bat as well which basically checks if its available or not

Describe the solution you'd like

  • If we have something like a conan package like this
  • https://conan.io/center/recipes/vulkan-loader
  • we can do something like this
@REM Run conan install command
conan install . -c tools.cmake.cmaketoolchain:generator=visual_studio  --output-folder=ProjectFolder --build missing
if %ERRORLEVEL% neq 0 (
    echo Conan install failed.
    @REM exit /b %ERRORLEVEL%
)

the --build missing flag will only build vulkan if it's missing.

jaibeer72 avatar Dec 28 '23 09:12 jaibeer72