File tree 2 files changed +10
-6
lines changed
2 files changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -238,7 +238,7 @@ const char *CleanerPlugin::GetLicense()
238
238
239
239
const char *CleanerPlugin::GetVersion ()
240
240
{
241
- return " 1.0.0 " ;
241
+ return " 1.0.1 " ;
242
242
}
243
243
244
244
const char *CleanerPlugin::GetDate ()
@@ -248,17 +248,17 @@ const char *CleanerPlugin::GetDate()
248
248
249
249
const char *CleanerPlugin::GetLogTag ()
250
250
{
251
- return " SAMPLE " ;
251
+ return " CLEANER " ;
252
252
}
253
253
254
254
const char *CleanerPlugin::GetAuthor ()
255
255
{
256
- return " AlliedModders LLC " ;
256
+ return " Poggu " ;
257
257
}
258
258
259
259
const char *CleanerPlugin::GetDescription ()
260
260
{
261
- return " Sample basic plugin " ;
261
+ return " Console regex filter " ;
262
262
}
263
263
264
264
const char *CleanerPlugin::GetName ()
Original file line number Diff line number Diff line change @@ -9,9 +9,12 @@ target("CleanerCS2-Xmake")
9
9
set_kind (" shared" )
10
10
add_files (" src/*.cpp" )
11
11
add_packages (" re2" )
12
+ add_cflags (" -fvisibility=hidden" )
13
+ add_cxxflags (" -fvisibility-inlines-hidden" )
12
14
13
15
add_files ({
14
- SDK_PATH .. " /tier1/convar.cpp"
16
+ SDK_PATH .. " /tier1/convar.cpp" ,
17
+ SDK_PATH .. " /public/tier0/memoverride.cpp" ,
15
18
})
16
19
17
20
if is_plat (" windows" ) then
@@ -87,7 +90,8 @@ target("CleanerCS2-Xmake")
87
90
" GNUC" ,
88
91
" COMPILER_GCC" ,
89
92
" PLATFORM_64BITS" ,
90
- " META_IS_SOURCE2"
93
+ " META_IS_SOURCE2" ,
94
+ " _GLIBCXX_USE_CXX11_ABI=0"
91
95
})
92
96
end
93
97
set_languages (" cxx20" )
You can’t perform that action at this time.
0 commit comments