| cmake_minimum_required(VERSION 3.1) | |
| enable_language(ASM) | |
| add_library(vector_tests | |
| test_vector.c | |
| common_vector_test.c) | |
| target_include_directories(vector_tests PUBLIC include) | |
| target_link_libraries(vector_tests springbok) | |
| target_compile_options(vector_tests PUBLIC | |
| -Wall | |
| -Werror | |
| -O3 | |
| -g3 | |
| -ggdb | |
| -ffreestanding | |
| -ffunction-sections | |
| -fstack-usage | |
| -mstrict-align) |