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