-
Notifications
You must be signed in to change notification settings - Fork 31
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat cmake: add download_userver() #80
Open
segoon
wants to merge
6
commits into
userver-framework:develop
Choose a base branch
from
segoon:feature/download
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
# Copied from get_cpm.cmake | ||
set(CPM_DOWNLOAD_VERSION 0.39.0) | ||
set(CPM_HASH_SUM "66639bcac9dd2907b2918de466783554c1334446b9874e90d38e3778d404c2ef") | ||
set(CPM_DOWNLOAD_LOCATION "${CMAKE_BINARY_DIR}/cmake/CPM_${CPM_DOWNLOAD_VERSION}.cmake") | ||
file(DOWNLOAD | ||
https://github.com/cpm-cmake/CPM.cmake/releases/download/v${CPM_DOWNLOAD_VERSION}/CPM.cmake | ||
${CPM_DOWNLOAD_LOCATION} EXPECTED_HASH SHA256=${CPM_HASH_SUM} | ||
) | ||
include(${CPM_DOWNLOAD_LOCATION}) | ||
|
||
|
||
function(download_userver) | ||
set(OPTIONS) | ||
set(ONE_VALUE_ARGS VERSION TRY_DIR) | ||
set(MULTI_VALUE_ARGS FEATURES FEATURES_OFF) | ||
cmake_parse_arguments( | ||
ARG "${OPTIONS}" "${ONE_VALUE_ARGS}" "${MULTI_VALUE_ARGS}" ${ARGN} | ||
) | ||
if(NOT ARG_VERSION) | ||
set(ARG_VERSION develop) | ||
endif() | ||
|
||
if(ARG_TRY_DIR AND EXISTS ${ARG_TRY_DIR}) | ||
foreach(FEATURE ${ARG_FEATURES}) | ||
set(USERVER_FEATURE_${FEATURE} ON CACHE BOOL "" FORCE) | ||
endforeach() | ||
foreach(FEATURE ${ARG_FEATURES_OFF}) | ||
set(USERVER_FEATURE_${FEATURE} OFF CACHE BOOL "" FORCE) | ||
endforeach() | ||
|
||
message(STATUS "Using userver from ${ARG_TRY_DIR}") | ||
add_subdirectory(${ARG_TRY_DIR}) | ||
return() | ||
endif() | ||
|
||
set(CMAKE_OPTIONS "USERVER_IS_THE_ROOT_PROJECT OFF") | ||
foreach(FEATURE ${ARG_FEATURES}) | ||
list(APPEND CMAKE_OPTIONS "USERVER_FEATURE_${FEATURE} ON") | ||
endforeach() | ||
foreach(FEATURE ${ARG_FEATURES_OFF}) | ||
list(APPEND CMAKE_OPTIONS "USERVER_FEATURE_${FEATURE} OFF") | ||
endforeach() | ||
|
||
CPMAddPackage( | ||
NAME userver | ||
GITHUB_REPOSITORY userver-framework/userver | ||
GIT_TAG ${ARG_VERSION} | ||
OPTIONS ${CMAKE_OPTIONS} | ||
) | ||
endfunction() |
This file was deleted.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
current version is 0.40.2