17 lines
270 B
CMake
17 lines
270 B
CMake
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
|
|
)
|