diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 4a3a70d..2cf026f 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -4,14 +4,14 @@ set(CMAKE_OSX_ARCHITECTURES arm64;x86_64) project(math_intrinsics_unit_tests) -add_executable(tests tests.c math_intrinsics.c) +add_executable(test test.c math_intrinsics.c) if(LINUX) set(CMAKE_EXE_LINKER_FLAGS "-lm") endif() if(MSVC) - target_compile_options(tests PRIVATE /W4 /WX /std:c17) + target_compile_options(test PRIVATE /W4 /WX /std:c17) else() - target_compile_options(tests PRIVATE -Wall -Wextra -Wpedantic -Werror -mavx2 -mfma) + target_compile_options(test PRIVATE -Wall -Wextra -Wpedantic -Werror -mavx2 -mfma) endif() \ No newline at end of file diff --git a/tests/tests.c b/tests/test.c similarity index 100% rename from tests/tests.c rename to tests/test.c