forked from cpp-netlib/url
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
8 changed files
with
476 additions
and
1 deletion.
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
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,19 @@ | ||
# | ||
# Copyright (c) 2022 Alan de Freitas ([email protected]) | ||
# | ||
# Distributed under the Boost Software License, Version 1.0. (See accompanying | ||
# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) | ||
# | ||
# Official repository: https://github.com/boostorg/url | ||
# | ||
|
||
source_group("" FILES | ||
finicky.cpp | ||
) | ||
|
||
add_executable(finicky | ||
finicky.cpp | ||
) | ||
|
||
set_property(TARGET finicky PROPERTY FOLDER "Examples") | ||
target_link_libraries(finicky PRIVATE Boost::url Boost::json Boost::regex) |
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,17 @@ | ||
# | ||
# Copyright (c) 2022 Alan de Freitas ([email protected]) | ||
# | ||
# Distributed under the Boost Software License, Version 1.0. (See accompanying | ||
# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) | ||
# | ||
# Official repository: https://github.com/boostorg/url | ||
# | ||
|
||
project : requirements ; | ||
|
||
project | ||
: requirements | ||
<library>/boost/url//boost_url | ||
; | ||
|
||
exe qrcode : qrcode.cpp ; |
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,38 @@ | ||
{ | ||
"defaultBrowser": "Google Chrome", | ||
"rewrite": [ | ||
{ | ||
"match": { | ||
"protocol": "http" | ||
}, | ||
"url": { | ||
"protocol": "https" | ||
} | ||
}, | ||
{ | ||
"match": "**/*example.org/*", | ||
"url": "http://example.com" | ||
} | ||
], | ||
"handlers": [ | ||
{ | ||
"match": [ | ||
"**/*apple.com/*", | ||
"**/*example.org/*", | ||
"**/*example.com**" | ||
], | ||
"browser": "Safari" | ||
}, | ||
{ | ||
"match": "/workplace/", | ||
"browser": "Firefox" | ||
}, | ||
{ | ||
"match": [ | ||
"**/*google.com/*", | ||
"**/*.google.com/*" | ||
], | ||
"browser": "Google Chrome" | ||
} | ||
] | ||
} |
Oops, something went wrong.