MikZ 5 Posted September 23, 2018 (edited) Hi! Good day! Updated my Git file and i notice changes in plugin makefile. MYPLUGINS := $(MYPLUGINS) Am i doing this correctly? MYPLUGINS := $(plugin1 plugin2 plugin3) or MYPLUGINS := $(plugin1) $(plugin2) $(plugin3) ?? after compiling my plugin disappears. /sob Please help me. thanks! Edited September 23, 2018 by MikZ Quote Share this post Link to post Share on other sites
0 4144 364 Posted September 23, 2018 wrong Exists atleast 3 ways how build plugins. 1. after building server run make plugin.myplugin1 where myplugin1 is your plugin name or you can add your plugin name into variable in make file 2. add your plugins into make file. change MYPLUGINS := $(MYPLUGINS) to MYPLUGINS := $(MYPLUGINS) myplugin1 where myplugin1 is your plugin name 3. use environment variables. run command MYPLUGINS=myplugin1 make plugins where myplugin1 is your plugin name 1 MikZ reacted to this Quote Share this post Link to post Share on other sites
Hi!
Good day!
Updated my Git file and i notice changes in plugin makefile.
MYPLUGINS := $(MYPLUGINS)
Am i doing this correctly?
MYPLUGINS := $(plugin1 plugin2 plugin3)
or
MYPLUGINS := $(plugin1) $(plugin2) $(plugin3) ??
after compiling my plugin disappears. /sob
Please help me.
thanks!
Edited by MikZShare this post
Link to post
Share on other sites