blob: d7f6bc15bdafff602a7d5aa1b986414f2a435ddd [file] [log] [blame]
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)