PrusaSlicer-NonPlainar/xs/xsp/XS.xsp
Alessandro Ranellucci 8b6a8e6307 Ported PlaceholderParser::update_timestamp() to XS
Note that Slic3r version number is now located in libslic3r.h
2014-11-09 20:41:43 +01:00

19 lines
186 B
Plaintext

%module{Slic3r::XS};
%package{Slic3r::XS};
#include <myinit.h>
%{
%}
%package{Slic3r};
%{
SV*
VERSION()
CODE:
RETVAL = newSVpv(SLIC3R_VERSION, 0);
OUTPUT: RETVAL
%}