Add initial support for python bindings
[alexxy/gromacs.git] / cmake / gmxTestPipes.cmake
index 55461b4f7f8b0b0c50ed1f84d9083662da0d811a..5ac14cda520a212e8fc2605d9ab7e3c6b5f344f6 100644 (file)
@@ -1,7 +1,7 @@
 #
 # This file is part of the GROMACS molecular simulation package.
 #
-# Copyright (c) 2009, by the GROMACS development team, led by
+# Copyright (c) 2009,2014, by the GROMACS development team, led by
 # Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
 # and including many others, as listed in the AUTHORS file in the
 # top-level source directory and at http://www.gromacs.org.
 
 MACRO(GMX_TEST_PIPES VARIABLE)
     IF(NOT DEFINED ${VARIABLE})
-        
+
         MESSAGE(STATUS "Checking for pipe support")
 
-        TRY_COMPILE(HAVE_PIPES "${CMAKE_BINARY_DIR}"    
+        TRY_COMPILE(HAVE_PIPES "${CMAKE_BINARY_DIR}"
                     "${CMAKE_SOURCE_DIR}/cmake/TestPipes.c")
 
-    ENDIF(NOT DEFINED ${VARIABLE})
+    ENDIF()
 ENDMACRO(GMX_TEST_PIPES VARIABLE)
 
-
-
-