Hazel
Hazel copied to clipboard
Package Manager like conan 2.0 or 1.0 for 3rd party vendors ?
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.