[PercentEncoding] Add minimal percent encoding/decoding functions
This commit is contained in:
parent
ed6dc601cc
commit
2eefad4152
4 changed files with 180 additions and 0 deletions
17
Tests/PercentEncoding/CMakeLists.txt
Normal file
17
Tests/PercentEncoding/CMakeLists.txt
Normal file
|
@ -0,0 +1,17 @@
|
|||
add_executable(TestPercentEncoding)
|
||||
|
||||
target_compile_features(TestPercentEncoding
|
||||
PRIVATE
|
||||
cxx_std_20
|
||||
)
|
||||
|
||||
target_link_libraries(TestPercentEncoding
|
||||
PRIVATE
|
||||
Garbage
|
||||
Catch2::Catch2WithMain
|
||||
)
|
||||
|
||||
target_sources(TestPercentEncoding
|
||||
PRIVATE
|
||||
Tests.cpp
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue