Switch build to msvc for windows.
Switch build to clang for linux. Mingw binaries isn't working with vanilla hlds / listenserver. And i'm too lazy to debug them. For consistency reason, linux switched clang, so we're only have clang for linux & osx and msvc for windows.
This commit is contained in:
parent
d8b7e8857d
commit
655693582a
6 changed files with 99 additions and 94 deletions
10
meson.build
10
meson.build
|
|
@ -197,7 +197,15 @@ if isWindows and (isVC or isIntel)
|
|||
]
|
||||
|
||||
if isOptimize
|
||||
ccflags += '/GL'
|
||||
ccflags += [
|
||||
'/GL',
|
||||
'/arch:SSE2',
|
||||
'/GS-',
|
||||
'/Ob2',
|
||||
'/Oy',
|
||||
'/Oi'
|
||||
]
|
||||
|
||||
ldflags += '/LTCG'
|
||||
endif
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue