diff --git a/CMakeModules/compileTestIntel.cpp b/CMakeModules/compileTestIntel.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..3db518c378cc0e36a067bea93d7cf0b45a5ff222
--- /dev/null
+++ b/CMakeModules/compileTestIntel.cpp
@@ -0,0 +1,13 @@
+int main(){
+
+    int i ;
+#ifdef __INTEL_COMPILER
+
+     i = 0;
+
+#else
+
+#error 'Not Intel Compiler "
+
+#endif
+}