llama.cpp
llama.cpp copied to clipboard
Don't use a specific version for the main-cmake-pkg (CMake throws and error)
- [x] I have read the contributing guidelines
- Self-reported review complexity:
- [X] Low
- [ ] Medium
- [ ] High
Note for reviewers: do we need to check if package isn't available, and then throw error (something like this):
if(MyPackage_FOUND)
message(STATUS "MyPackage found!")
else()
message(WARNING "MyPackage not found.")
endif()
Or just do nothing (CMake will throw an error if package is not found)?