summaryrefslogtreecommitdiffstats
path: root/Tests/SwigTest/example.i
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2004-04-30 16:17:06 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2004-04-30 16:17:06 (GMT)
commita828368232fe08e0065c26e07c38f4dafc78aadf (patch)
tree4d241763e626a7af5d127864e3afff22953d2633 /Tests/SwigTest/example.i
parent257daa4635ed9b88035c84c5cb1fcc689268a949 (diff)
downloadCMake-a828368232fe08e0065c26e07c38f4dafc78aadf.zip
CMake-a828368232fe08e0065c26e07c38f4dafc78aadf.tar.gz
CMake-a828368232fe08e0065c26e07c38f4dafc78aadf.tar.bz2
ENH: Here is test for swig module
Diffstat (limited to 'Tests/SwigTest/example.i')
-rw-r--r--Tests/SwigTest/example.i10
1 files changed, 10 insertions, 0 deletions
diff --git a/Tests/SwigTest/example.i b/Tests/SwigTest/example.i
new file mode 100644
index 0000000..75700b3
--- /dev/null
+++ b/Tests/SwigTest/example.i
@@ -0,0 +1,10 @@
+/* File : example.i */
+%module example
+
+%{
+#include "example.h"
+%}
+
+/* Let's just grab the original header file here */
+%include "example.h"
+