From 64ff0aebd31eb2aae8e74efb503c5ffb56faf37b Mon Sep 17 00:00:00 2001 From: Andreas Lauser Date: Wed, 21 Aug 2013 15:40:45 +0200 Subject: [PATCH] fix the test for the quadmath library Seems like I forgot to include the "CheckCSourceCompiles" macro before using it. Since it worked for me before, I'm wondering what made this happen. Anyway, it should now work correctly in all cases. --- cmake/Modules/FindQuadmath.cmake | 1 + 1 file changed, 1 insertion(+) diff --git a/cmake/Modules/FindQuadmath.cmake b/cmake/Modules/FindQuadmath.cmake index 4752e478..4d0efd40 100644 --- a/cmake/Modules/FindQuadmath.cmake +++ b/cmake/Modules/FindQuadmath.cmake @@ -6,6 +6,7 @@ # QUADMATH_LIBRARIES # # perform tests +include(CheckCSourceCompiles) include(CheckCXXSourceCompiles) include(CMakePushCheckState)