mirror of
https://github.com/Kitware/CMake.git
synced 2025-12-31 10:50:16 -06:00
When file property SWIG_MODULE_NAME is specified, provide option -module to SWIG compiler. Fixes: #18374
10 lines
141 B
OpenEdge ABL
10 lines
141 B
OpenEdge ABL
/* File : example.i */
|
|
%module example
|
|
|
|
%{
|
|
#include "example.h"
|
|
%}
|
|
|
|
/* Let's just grab the original header file here */
|
|
%include "example.h"
|