18 lines
234 B
Text
18 lines
234 B
Text
|
add_executable(TestBase64)
|
||
|
|
||
|
target_compile_features(TestBase64
|
||
|
PRIVATE
|
||
|
cxx_std_20
|
||
|
)
|
||
|
|
||
|
target_link_libraries(TestBase64
|
||
|
PRIVATE
|
||
|
Garbage
|
||
|
Catch2::Catch2WithMain
|
||
|
)
|
||
|
|
||
|
target_sources(TestBase64
|
||
|
PRIVATE
|
||
|
Tests.cpp
|
||
|
)
|