File tree Expand file tree Collapse file tree 2 files changed +19
-4
lines changed Expand file tree Collapse file tree 2 files changed +19
-4
lines changed Original file line number Diff line number Diff line change @@ -32,6 +32,16 @@ If you whant to be able to mount the files system as non root user you will have
32
32
/etc/fuse.conf
33
33
and put user_allow_other in it.
34
34
35
-
36
-
37
-
35
+ ## Debian
36
+ To create a debian package form the source use:
37
+ > dh_make
38
+ > debuild -i -us -uc -b
39
+
40
+ ## Other distributions
41
+ - Binary packages
42
+ [ pcl_client-2.0.1-Linux.sh] ( https://github.com/libfuse/libfuse )
43
+ [ pcl_client-2.0.1-Linux.tar.gz] ( https://github.com/libfuse/libfuse )
44
+ [ pcl_client-2.0.1-Linux.tar.Z] ( https://github.com/libfuse/libfuse )
45
+ [ pcloudcc_2.0.1-1_amd64.deb] ( https://github.com/libfuse/libfuse )
46
+ - Source
47
+ [ pcloudcc_2.0.1-1_Source.tar.gz] ( https://github.com/libfuse/libfuse )
Original file line number Diff line number Diff line change @@ -3,11 +3,16 @@ project(pcl_client)
3
3
4
4
INCLUDE (CPack )
5
5
6
+ set (Boost_USE_STATIC_LIBS ON )
7
+ set (Boost_USE_MULTITHREADED ON )
8
+ unset (Boost_INCLUDE_DIR CACHE )
9
+ unset (Boost_LIBRARY_DIRS CACHE )
10
+
6
11
find_package (Boost COMPONENTS system program_options REQUIRED )
7
12
include_directories (${Boost_INCLUDE_DIR} )
8
13
link_directories (${Boost_LIBRARY_DIR} )
9
14
10
- #set (CMAKE_CXX_FLAGS "-fsanitize=address ")
15
+ #set (CMAKE_CXX_FLAGS "-Wl,-Bstatic ")
11
16
set (PCLSYNC_PATH ${CMAKE_SOURCE_DIR} /lib/pclsync )
12
17
set (MBEDTLS_PATH ${CMAKE_SOURCE_DIR} /lib/mbedtls )
13
18
set (SQLITE3_PATH ${CMAKE_SOURCE_DIR} /lib/sqlite )
You can’t perform that action at this time.
0 commit comments