Create file structure

This commit is contained in:
2021-04-10 20:52:09 +02:00
commit 7570251185
10 changed files with 18104 additions and 0 deletions

9
test/CMakeLists.txt Normal file
View File

@@ -0,0 +1,9 @@
project(base64-test)
add_custom_target(test "${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}" "-r compact" "-s" DEPENDS ${PROJECT_NAME})
include_directories("${CMAKE_CURRENT_SOURCE_DIR}/catch-framework")
aux_source_directory("src" TEST_SOURCES)
add_executable(${PROJECT_NAME} ${TEST_SOURCES})
target_link_libraries(${PROJECT_NAME} base64-lib)