https://github.com/Kitware/CMake
Raw File
Tip revision: 0b3781e4c497566acaa504d4106d11c02a642501 authored by Brad King on 16 January 2014, 14:31:28 UTC
CMake 2.8.12.2
Tip revision: 0b3781e
example.i
/* File : example.i */
%module example

%{
#include "example.h"
%}

/* Let's just grab the original header file here */
%include "example.h"

back to top