-
Notifications
You must be signed in to change notification settings - Fork 10
/
INSTALL.txt
31 lines (23 loc) · 1.25 KB
/
INSTALL.txt
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
31
===================================
FL-Essentials Library (FLE) INSTALL
===================================
-----------------------------------
Building FLE
-----------------------------------
More detailed build instructions can be found in the documentation,
this section is just for the inpatient among you.
CMake is the preferred build system for FLE. The minimum required version
is 2.8.11. If you don't have it yet, downloads for CMake can be found on
http://www.cmake.org/.
Building FLE with CMake is 'business as usual' if you've used CMake before. All steps can be done either on the command line shell or by using the CMake GUI tool, the choice is up to you.
First, invoke CMake to generate build files for a particular
toolchain (for standard GNU makefiles: cmake -G 'Unix Makefiles').
Afterwards, use the generated build files to perform the actual
build.
Required Libraries:
1. FLTK greater than or equal 1.4.xx
(prebuild libraries that can be found in lib folder was built with 1.4.x-20190419)
2. OpenCV greater than or equal 2.4
(prebuild libraries that can be found in lib folder was built with OpenCV v4.1.0)
Before building FLE, you should have built the OpenCV and FLTK, then specify the FLTK and OpenCV build folders in CMake,
and you are done.