view test/CMakeLists.txt @ 26:6c91cd9a2f2d

include/vec/vec: fix vec_avg implementation now it's exactly the same as AltiVec's
author Paper <paper@tflc.us>
date Mon, 25 Nov 2024 04:43:22 +0000
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)