1
0
mirror of https://github.com/Kitware/CMake.git synced 2025-10-18 08:51:52 +08:00
Files
CMake/Tests/UseSWIG/MultipleFiles/add.cxx
Marc Chevrier d264685bee UseSWIG: Update option -interface usage
Option -interface must not be used if multiple SWIG files are part
of the same library.

Fixes: #21134
2020-08-31 12:33:57 +02:00

7 lines
60 B
C++

#include "add.h"
int add(int a, int b)
{
return a + b;
}