summaryrefslogtreecommitdiff
path: root/INSTALL
diff options
context:
space:
mode:
authorJohannes Schauer <josch@debian.org>2015-07-07 11:12:00 +0200
committerJohannes Schauer <josch@debian.org>2015-07-07 11:12:00 +0200
commitd210b3addc8ffed7214afd8c7882e700fbcc38c5 (patch)
treeded15607f7f24f83d2d0d7c542265c0a97af577a /INSTALL
fuzzylite (5.1+dfsg-1) unstable; urgency=medium
* new upstream version (Closes: #777858) * removed debian/patches/20140705-minor-improvements-on-building-script as upstream integrated it. Adjust build options in d/rules accordingly. * delete debian/patches/20140714-building-from-objects-just-once and debian/patches/20141027-fix-some-spelling as they have been applied upstream * install usr/lib/*/pkgconfig/fuzzylite.pc in fuzzylite-dev * SONAME bump from 5.0 to 5.1, so renaming libfuzzylite5.0 to libfuzzylite5.1 * add debian/patches/pkgconfig_installdir to install pkgconfig file in correct location # imported from the archive
Diffstat (limited to 'INSTALL')
-rw-r--r--INSTALL32
1 files changed, 32 insertions, 0 deletions
diff --git a/INSTALL b/INSTALL
new file mode 100644
index 0000000..856303e
--- /dev/null
+++ b/INSTALL
@@ -0,0 +1,32 @@
+INSTALL
+=======
+
+(1) Make sure you uninstall previous versions of fuzzylite from your computer.
+
+(2) The following building script is available in folder `fuzzylite/fuzzylite/`:
+```
+#In Windows,
+> build.bat help
+Usage: build.bat [options]
+where [options] can be any of the following:
+ all builds fuzzylite in debug and release mode (default)
+ debug builds fuzzylite in debug mode
+ release builds fuzzylite in release mode
+ clean erases previous builds
+ help shows this information
+
+#In Unix, from fuzzylite/fuzzylite
+$ ./build.sh help
+Usage: [bash] ./build.sh [options]
+where [options] can be any of the following:
+ all builds fuzzylite in debug and release mode (default)
+ debug builds fuzzylite in debug mode
+ release builds fuzzylite in release mode
+ clean erases previous builds
+ help shows this information
+```
+
+(3) After executing the script, the binaries will be built and stored in sub-folders `release/bin` and `debug/bin`
+
+
+For more advanced building options, please check the contents of `fuzzylite/fuzzylite/build.[bat|sh]` and the contents of `fuzzylite/fuzzylite/CMakeLists.txt`.