view test/CMakeLists.txt @ 27:d00b95f95dd1 default tip

impl/arm/neon: it compiles again, but is untested
author Paper <paper@tflc.us>
date Mon, 25 Nov 2024 00:33:02 -0500
parents 92156fe32755
children
line wrap: on
line source

cmake_minimum_required(VERSION 3.23)

project(vec-tests LANGUAGES C)

# add main vec directory
add_subdirectory(.. vec)

add_executable(vec-tests test.c)

target_link_libraries(vec-tests vec m)