view test/CMakeLists.txt @ 28:c6c99ab1088a

*: add min/max functions and a big big refactor (again) agh, this time I added a few more implementations (and generally made the code just a little faster...)
author Paper <paper@tflc.us>
date Thu, 24 Apr 2025 00:54:02 -0400
parents 92156fe32755
children 8b5e0974fd41
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)