Skip to content

Commit

Permalink
Add checks for CMake and Curl
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobleeharris authored and uyjulian committed Mar 8, 2024
1 parent a8dae73 commit 279a508
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
4 changes: 4 additions & 0 deletions depends/check-cmake.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/bin/sh

## Check for CMake.
cmake --version 1> /dev/null || { echo "ERROR: Install CMake before continuing."; exit 1; }
3 changes: 3 additions & 0 deletions depends/check-curl.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/sh

curl --version 1> /dev/null || { echo "ERROR: Install Curl before continuing."; exit 1; }

0 comments on commit 279a508

Please sign in to comment.