cmake: add missing bracket.

This commit is contained in:
Andrey Akhmichin 2022-06-16 12:04:30 +05:00
parent d8b05d12d5
commit d8dea3cc2b
No known key found for this signature in database
GPG Key ID: 1F180D249B0643C0
1 changed files with 1 additions and 1 deletions

View File

@ -117,7 +117,7 @@ check_include_file("tgmath.h" HAVE_TGMATH_H)
if(HAVE_TGMATH_H)
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 )
int main(){ return (int)(-asin(val) + cos(val2)); }" HAVE_VALID_TGMATH_H )
if(${HAVE_VALID_TGMATH_H})
add_definitions(-DHAVE_TGMATH_H)
endif()