-
Notifications
You must be signed in to change notification settings - Fork 300
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
Easy-peasy library (WIP) #767
Closed
Closed
Changes from 19 commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
d5d2860
Easy-peasy library
apolukhin 93e5379
Its alive
apolukhin 18d69bd
start docs
apolukhin 415e168
minor tweaks
apolukhin e5ae62c
more tests
apolukhin e8e6b1f
move towards Dependency
apolukhin ad2bfd2
WIP
apolukhin 25eb3d6
WIP
apolukhin d71efb0
WIP
apolukhin 1c8b3ec
its alive!
apolukhin 3fe0778
cleanup
apolukhin a5dd591
cleanup and samples
apolukhin 698e02c
Merge branch 'develop' of github.com:userver-framework/userver into e…
apolukhin e65f6e5
update
apolukhin 34e570e
tweaks
apolukhin b910a2f
more samples
apolukhin de0d755
JSON example and docs
apolukhin b57fb5c
Merge branch 'develop' of github.com:userver-framework/userver into e…
apolukhin d9f0cc6
Better integration with core
apolukhin adb286c
review fixes
apolukhin 564d49a
minimal docs
apolukhin 9a5483d
Merge branch 'develop' of github.com:userver-framework/userver into e…
apolukhin 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
include_guard(GLOBAL) | ||
|
||
if(userver_easy_FOUND) | ||
return() | ||
endif() | ||
|
||
find_package(userver REQUIRED COMPONENTS postgresql) | ||
|
||
set(userver_easy_FOUND TRUE) | ||
|
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
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,11 @@ | ||
project(userver-easy CXX) | ||
|
||
userver_module(easy | ||
SOURCE_DIR "${CMAKE_CURRENT_SOURCE_DIR}" | ||
LINK_LIBRARIES userver::postgresql | ||
UTEST_SOURCES "${CMAKE_CURRENT_SOURCE_DIR}/src/*_test.cpp" | ||
) | ||
|
||
if(USERVER_BUILD_SAMPLES) | ||
add_subdirectory(samples) | ||
endif() | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. add_sample_subdirectory? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Возможно, но не в этом PR |
Oops, something went wrong.
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.
module -> component?
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.
Да, но не в этом PR