mirror of
https://github.com/YGGverse/hlsdk-portable.git
synced 2025-03-13 05:51:19 +00:00
cmake: do not link libm for MSVC.
This commit is contained in:
parent
7431c7a717
commit
2363a8ff21
@ -115,7 +115,9 @@ endif()
|
||||
|
||||
check_include_file("tgmath.h" HAVE_TGMATH_H)
|
||||
if(HAVE_TGMATH_H)
|
||||
set(CMAKE_REQUIRED_LIBRARIES "m")
|
||||
if(NOT MSVC)
|
||||
set(CMAKE_REQUIRED_LIBRARIES "m")
|
||||
endif()
|
||||
check_c_source_compiles("#include <tgmath.h>
|
||||
const float val = 2, val2 = 3;
|
||||
int main(){ return (int)(-asin(val) + cos(val2)); }" HAVE_VALID_TGMATH_H )
|
||||
|
Loading…
x
Reference in New Issue
Block a user