Is there a way to prevent installation of .def
files?
#319
Unanswered
realmazharhussain
asked this question in
Q&A
Replies: 2 comments 3 replies
-
Being plugins probably you may omit the .def generation as you omit the headers generation. @sdroege do you have opinions in this regard? |
Beta Was this translation helpful? Give feedback.
3 replies
-
I don't think it makes sense to ship the |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I packaged
gst-plugins-rs
for msys2. The options I use during build/install are--workspace --offline --release --library-type=cdylib --prefix="${MINGW_PREFIX}" --exclude gst-plugin-csound
. This installs.def
files along with the.dll
files.I can easily remove all the
.def
files aftercinstall
has done its thing. But I was wondering if there is any option I can use to prevent.def
files from getting installed in the first place?Beta Was this translation helpful? Give feedback.
All reactions