This repository has been archived on 2024-06-12. You can view files and clone it, but cannot push or open issues or pull requests.
MPortLink/build.sh

9 lines
191 B
Bash
Executable File

#!/bin/sh
CMAKE="$(which cmake)"
MAKE="$(which make)"
CURRENT_PATH="$(dirname $(realpath ${0}))"
${CMAKE} -S "${CURRENT_PATH}" -B "${CURRENT_PATH}/build"
${MAKE} -C "${CURRENT_PATH}/build"