forked from indilib/indi-3rdparty
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
38 lines (23 loc) · 1.41 KB
/
README
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
32
33
34
35
36
37
INDI Library 3rd party drivers
==============================
You must install INDI Library before installing any 3rd party driver. By default, all 3rd party drivers are built and installed.
# To get a list of all options, type:
$ cmake -L
# To turn off a specific driver (for example INDI QHY)
$ cmake -DCMAKE_INSTALL_PREFIX=/usr -DWITH_QHY:OPTION=OFF .
###########################################
### STEP 1: Build and Install Libraries ###
###########################################
# To build and install all the drivers, the required libraries for each driver must be first installed:
$ cmake -DCMAKE_INSTALL_PREFIX=/usr .
If you see a message saying "Not all libraries found, you must build and install all libraries first", then you must now build and install the libraries first before proceeding to STEP 2 to build the drivers.
On the otherhand, if you see a message saying "All libraraies are found. Building all INDI 3rd party drivers now.", then you DO NOT NEED to proceed to STEP 2, as all drivers will be built and installed in this step since all dependencies were found.
$ make
$ sudo make install
###########################################
#### STEP 2: Build and Install Drivers ####
###########################################
ONLY run this step if you see "Not all libraries found, you must build and install all libraries first" in STEP 1.
$ cmake -DCMAKE_INSTALL_PREFIX=/usr .
$ make
$ sudo make install