#!/bin/sh
echo "There is no need to run configure for building smooth. Just make sure"
echo "the following prerequisites are met before running make:"
echo
echo "    On Linux, *BSD, Solaris, Hurd:"
echo
echo "        - libbz2 / libbzip2 development package"
echo "        - libcurl development package"
echo "        - libfribidi development package"
echo "        - libgtk+3.0 development package"
echo "        - libjpeg development package"
echo "        - libxml2 development package"
echo
echo "        - smooth uses a bundled version of libcpuid by default. To use"
echo "          the library installed on your system, please build with"
echo "          \"make config=systemlibcpuid\"."
echo
echo "    On macOS:"
echo
echo "        - Building smooth is supported on macOS 10.5.8 Leopard and later"
echo "          using the Xcode Command Line Tools (no Xcode project file provided)"
echo
echo "    On Windows:"
echo
echo "        - Please use MSYS2 (https://www.msys2.org/) or Visual Studio 2022"
echo "          with the msvc/smooth.sln project file to build smooth"
echo
echo "When all prerequisites are met, simply run \"make && make install\"."
echo
