Skip to content

Commit

Permalink
Release v0.3.1 (#637)
Browse files Browse the repository at this point in the history
  • Loading branch information
poor-circle authored Mar 19, 2024
1 parent d8836aa commit 2880240
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.15)
project(yaLanTingLibs
VERSION 0.3.0
VERSION 0.3.1
DESCRIPTION "yaLanTingLibs"
HOMEPAGE_URL "https://github.com/alibaba/yalantinglibs"
LANGUAGES CXX
Expand Down
3 changes: 2 additions & 1 deletion cmake/install.cmake
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
message(STATUS "-------------YLT INSTALL SETTING------------")
option(INSTALL_THIRDPARTY "Install thirdparty" ON)
option(INSTALL_THIRDPARTY_BY_PACKAGE_MANAGER "Install thirdparty by package manager" OFF)
message(STATUS "INSTALL_THIRDPARTY: " ${INSTALL_THIRDPARTY})
option(INSTALL_INDEPENDENT_THIRDPARTY "Install independent thirdparty" ON)

Expand Down Expand Up @@ -56,7 +57,7 @@ if (INSTALL_THIRDPARTY)
$<INSTALL_INTERFACE:include/ylt/thirdparty>
)
endif()
elseif(VCPKG_INSTALL_THIRDPARTY)
elseif(INSTALL_THIRDPARTY_BY_PACKAGE_MANAGER)
install(DIRECTORY "${yaLanTingLibs_SOURCE_DIR}/include/ylt/thirdparty/cinatra" DESTINATION include/ylt/thirdparty/cinatra)
install(DIRECTORY "${yaLanTingLibs_SOURCE_DIR}/include/ylt/thirdparty/iguana" DESTINATION include/ylt/thirdparty/iguana)
endif()
Expand Down

0 comments on commit 2880240

Please sign in to comment.