X-Git-Url: https://de.git.xonotic.org/?p=xonotic%2Fnetradiant.git;a=blobdiff_plain;f=SConscript;h=f33c75fe9d60ee145f5469c24bb1fd922d1e7d7c;hp=8813230f3286e2b8caffdc77c62f9b20029cab47;hb=c9fe7c049871b899889a82ec57b67647afa4f79b;hpb=b13f3034eb4688b4eb2b681668f5e69a6a34978f;ds=sidebyside diff --git a/SConscript b/SConscript index 8813230f..f33c75fe 100644 --- a/SConscript +++ b/SConscript @@ -473,6 +473,21 @@ prtview_lib = prtview_env.SharedLibrarySafe(target='prtview', source=prtview_lst prtview_env.Depends(prtview_lib, profile_lib) prtview_env.Install(INSTALL + '/plugins', prtview_lib) + +brushexport_env = module_env.Copy() +brushexport_lst = build_list('contrib/brushexport', 'plugin.cpp') +brushexport_env.useGlib2() +brushexport_env.useGtk2() +brushexport_lib = brushexport_env.SharedLibrarySafe(target='brushexport', source=brushexport_lst, LIBPATH='libs') +brushexport_env.Install(INSTALL + '/plugins', brushexport_lib) + +sunplug_env = module_env.Copy() +sunplug_lst = build_list('contrib/sunplug', 'sunplug.cpp') +sunplug_env.useGlib2() +sunplug_env.useGtk2() +sunplug_lib = sunplug_env.SharedLibrarySafe(target='sunplug', source=sunplug_lst, LIBPATH='libs') +sunplug_env.Install(INSTALL + '/plugins', sunplug_lib) + #gensurf_lst = build_list('contrib/gtkgensurf', #'bitmap.cpp dec.cpp face.cpp font.cpp gendlgs.cpp genmap.cpp gensurf.cpp heretic.cpp plugin.cpp view.cpp triangle.c') #bob_env.SharedLibrarySafe(target='gensurf', source=gensurf_lst) @@ -559,6 +574,7 @@ radiant_src = [ 'renderer.cpp', 'renderstate.cpp', 'scenegraph.cpp', +'stacktrace.cpp', 'select.cpp', 'selection.cpp', 'server.cpp',