]> git.mxchange.org Git - simgear.git/blobdiff - CMakeLists.txt
Bump version number to 3.4.0
[simgear.git] / CMakeLists.txt
index 336e54c47398976e2da5627a4416d2d3d9c759a4..1bb303f7c91ba96bdeecbac6a7fb132441a286d6 100644 (file)
@@ -276,12 +276,12 @@ SET(CMAKE_MINSIZEREL_POSTFIX "" CACHE STRING "add a postfix, usually empty on wi
 # isnan might not be real symbol, so can't check using function_exists
 check_cxx_source_compiles(
     "#include <cmath> 
-    void f() { isnan(0.0);} "
+    int main() { return isnan(0.0);} "
     HAVE_ISNAN)
 
 check_cxx_source_compiles(
     "#include <cmath> 
-    void f() { std::isnan(0.0);} "
+    int main() { return std::isnan(0.0);} "
     HAVE_STD_ISNAN)
 
 if(CMAKE_COMPILER_IS_GNUCXX)