diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2004-04-30 16:17:06 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2004-04-30 16:17:06 (GMT) |
commit | a828368232fe08e0065c26e07c38f4dafc78aadf (patch) | |
tree | 4d241763e626a7af5d127864e3afff22953d2633 /Tests/SwigTest/example.i | |
parent | 257daa4635ed9b88035c84c5cb1fcc689268a949 (diff) | |
download | CMake-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.i | 10 |
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" + |