-
-
Notifications
You must be signed in to change notification settings - Fork 76
/
configure
executable file
·30 lines (30 loc) · 1.01 KB
/
configure
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/bin/sh
echo "There is no need to run configure for building fre:ac. Just make sure"
echo "the following prerequisites are met before running make:"
echo
echo " All operating systems:"
echo
echo " - Get, build and install the latest version of the smooth Class Library;"
echo " it can be obtained via Git using:"
echo
echo " git clone https://github.com/enzo1982/smooth.git"
echo
echo " - Get, build and install the fre:ac Component Development Kit"
echo " available from https://www.freac.org/"
echo
echo " On Linux:"
echo
echo " - libudev development package"
echo
echo " On macOS:"
echo
echo " - Building fre:ac 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/freac.sln project file to build fre:ac"
echo
echo "When all prerequisites are met, simply run \"make && make install\"."
echo