-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathconfigure
executable file
·29 lines (29 loc) · 1.13 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
#!/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