mirror of
https://github.com/vgough/encfs.git
synced 2024-11-21 23:43:26 +01:00
fix install targets
This commit is contained in:
parent
d89c69b10c
commit
9632b7a36c
@ -1,6 +1,7 @@
|
||||
image: encfs_worker
|
||||
script:
|
||||
- sh devmode
|
||||
- sh devmode -DCMAKE_INSTALL_PREFIX:PATH=/tmp/cmake
|
||||
- cd build
|
||||
- make
|
||||
- make test
|
||||
- make install
|
||||
|
@ -113,11 +113,12 @@ target_link_libraries(encfs
|
||||
${RLOG_LIBRARIES}
|
||||
${CMAKE_THREAD_LIBS_INIT}
|
||||
)
|
||||
install (TARGETS encfs DESTINATION lib)
|
||||
|
||||
add_executable (encfs-bin encfs/main.cpp)
|
||||
target_link_libraries (encfs-bin encfs)
|
||||
set_target_properties (encfs-bin PROPERTIES OUTPUT_NAME "encfs")
|
||||
install (TARGETS encfs DESTINATION bin)
|
||||
install (TARGETS encfs-bin DESTINATION bin)
|
||||
|
||||
add_executable (encfsctl encfs/encfsctl.cpp)
|
||||
target_link_libraries (encfsctl encfs)
|
||||
@ -129,7 +130,7 @@ target_link_libraries (makekey encfs)
|
||||
add_executable (checkops encfs/test.cpp)
|
||||
target_link_libraries (checkops encfs)
|
||||
|
||||
install (FILES ${CMAKE_SOURCE_DIR}/encfs/encssh DESTINATION bin)
|
||||
install (FILES encfs/encfssh DESTINATION bin)
|
||||
|
||||
# Reference all headers, to make certain IDEs happy.
|
||||
file (GLOB_RECURSE all_headers ${CMAKE_SOURCE_DIR}/*.h)
|
||||
|
Loading…
Reference in New Issue
Block a user