Luna/tests/CMakeLists.txt
apio 35b1b36599
All checks were successful
continuous-integration/drone/push Build is passing
tools+tests: Add a system to run all tests at once automatically
2023-05-07 23:04:24 +02:00

22 lines
845 B
CMake

add_library(test test.cpp test.h)
target_compile_options(test PRIVATE ${COMMON_FLAGS})
target_include_directories(test PUBLIC ${CMAKE_CURRENT_LIST_DIR})
target_include_directories(test PUBLIC ${LUNA_BASE}/usr/include)
function(luna_test SOURCE_FILE APP_NAME)
add_executable(${APP_NAME} ${SOURCE_FILE})
target_compile_options(${APP_NAME} PRIVATE -Os ${COMMON_FLAGS} -Wno-write-strings)
add_dependencies(${APP_NAME} libc)
target_include_directories(${APP_NAME} PRIVATE ${LUNA_BASE}/usr/include)
target_link_libraries(${APP_NAME} PRIVATE test os)
install(TARGETS ${APP_NAME} DESTINATION ${LUNA_ROOT}/initrd/bin/tests)
endfunction()
if(BUILD_TESTS)
luna_test(libluna/TestVector.cpp TestVector)
luna_test(libluna/TestBase64.cpp TestBase64)
luna_test(libluna/TestUtf8.cpp TestUtf8)
luna_app(run-tests.cpp run-tests)
endif()