[liblsl] Update library to 1.13.0-b11 (#7906)

* [liblsl] Update library to 1.13.0-b11

* Remove additional comments

* Change version in vcpkg_configure_cmake
This commit is contained in:
Ehsan 2019-08-28 01:39:47 +04:30 committed by Curtis J Bezault
parent 3b2bd689ed
commit 8cf2067e57
3 changed files with 21 additions and 5 deletions

View File

@ -1,3 +1,3 @@
Source: liblsl
Version: 1.13.0-b6
Version: 1.13.0-b11-1
Description: C++ lsl library for multi-modal time-synched data transmission over the local network

View File

@ -0,0 +1,13 @@
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 6f2b0ff..c22360f 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -184,7 +184,7 @@ else()
set(LSLPREFIX "LSL/")
endif()
-add_executable(lslver testing/lslver.c)
+add_library(lslver STATIC testing/lslver.c)
target_link_libraries(lslver PRIVATE lsl)
install(TARGETS lsl lslver

View File

@ -1,13 +1,15 @@
include(vcpkg_common_functions)
vcpkg_check_linkage(ONLY_DYNAMIC_LIBRARY)
set(VCPKG_LIBRARY_LINKAGE dynamic)
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO sccn/liblsl
REF 1.13.0-b6 # NOTE: when updating version, also change it in the parameter to vcpkg_configure_cmake
SHA512 fb98cdd73de5f13e97f639ba3f2f836d46ce28cdcb2246584728f296eb647e2c9c069534470a603b10d7dc34ab8978bf246e2187428ab231a925feb0b7024c89
REF 1.13.0-b11 # NOTE: when updating version, also change it in the parameter to vcpkg_configure_cmake
SHA512 212f28070b8239dc176d2e35bf4091896babbf7688e4cbe1c2bb0c3788f317ce2a80f92d4b008c6e577b01a09e8faf65228d396ff13e9ade0c1ffdc5e08cb9e5
HEAD_REF master
PATCHES
fix-install.patch
)
vcpkg_configure_cmake(
@ -17,7 +19,7 @@ vcpkg_configure_cmake(
-DLSL_BUILD_STATIC=OFF
-DLSL_UNIXFOLDERS=ON
-DLSL_NO_FANCY_LIBNAME=ON
-Dlslgitrevision="1.13.0-b6"
-Dlslgitrevision="1.13.0-b11"
-Dlslgitbranch="master"
)
@ -26,5 +28,6 @@ vcpkg_copy_pdbs()
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include)
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/share)
file(INSTALL ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/liblsl RENAME copyright)
file(INSTALL ${SOURCE_PATH}/README.md DESTINATION ${CURRENT_PACKAGES_DIR}/share/liblsl)