Skip to content

Commit

Permalink
renammed executable
Browse files Browse the repository at this point in the history
  • Loading branch information
Geolm committed Jan 19, 2024
1 parent b380fee commit 751138b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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()
File renamed without changes.

0 comments on commit 751138b

Please sign in to comment.