Skip to content

Commit aa73ed1

Browse files
author
Ivan Stoev
committed
Package info and static linking boost.
1 parent 6aef7b8 commit aa73ed1

File tree

2 files changed

+19
-4
lines changed

2 files changed

+19
-4
lines changed

README.md

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,16 @@ If you whant to be able to mount the files system as non root user you will have
3232
/etc/fuse.conf
3333
and put user_allow_other in it.
3434

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)

pCloudCC/CMakeLists.txt

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,16 @@ project(pcl_client)
33

44
INCLUDE(CPack)
55

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+
611
find_package(Boost COMPONENTS system program_options REQUIRED)
712
include_directories(${Boost_INCLUDE_DIR})
813
link_directories(${Boost_LIBRARY_DIR})
914

10-
#set (CMAKE_CXX_FLAGS "-fsanitize=address")
15+
#set (CMAKE_CXX_FLAGS "-Wl,-Bstatic")
1116
set (PCLSYNC_PATH ${CMAKE_SOURCE_DIR}/lib/pclsync)
1217
set (MBEDTLS_PATH ${CMAKE_SOURCE_DIR}/lib/mbedtls)
1318
set (SQLITE3_PATH ${CMAKE_SOURCE_DIR}/lib/sqlite)

0 commit comments

Comments
 (0)