libLAS-Ubuntu¶
Link¶
Ubuntu¶
Text Only | |
---|---|
1 2 |
|
sudo find /usr /usr/local /opt -name "libLASConfig.cmake" 2>/dev/null¶
Text Only | |
---|---|
1 2 |
|
sudo find /usr /usr/local /opt -name "liblas-config.cmake" 2>/dev/null¶
Text Only | |
---|---|
1 2 |
|
Text Only | |
---|---|
1 2 |
|
sudo find /usr /usr/local /opt -name "liblas.h" 2>/dev/null¶
Text Only | |
---|---|
1 2 |
|
sudo find /usr /usr/local /opt/lib -name "liblas.so" 2>/dev/null¶
Text Only | |
---|---|
1 2 |
|
dpkg -l | grep liblas¶
Text Only | |
---|---|
1 2 |
|
Text Only | |
---|---|
1 2 |
|
git clone https://github.com/libLAS/liblas.git¶
Text Only | |
---|---|
1 2 3 4 5 6 7 8 |
|
Text Only | |
---|---|
1 2 |
|
mkdir build && cd build¶
Text Only | |
---|---|
1 2 |
|
Text Only | |
---|---|
1 |
|
cmake ..
Text Only | |
---|---|
1 2 3 4 5 6 7 8 9 10 11 12 |
|
cmake .. -DCMAKE_POLICY_VERSION_MINIMUM=3.5¶
Text Only | |
---|---|
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 38 39 40 41 42 43 44 45 46 47 48 |
|
Text Only | |
---|---|
1 2 |
|