windows: fix dedicated build
This commit is contained in:
parent
8404418202
commit
af8c358ce9
4 changed files with 5 additions and 16 deletions
8
.github/workflows/build.yml
vendored
8
.github/workflows/build.yml
vendored
|
@ -1,12 +1,6 @@
|
||||||
name: Build
|
name: Build
|
||||||
|
|
||||||
on:
|
on: [push, pull_request]
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- "*"
|
|
||||||
pull_request:
|
|
||||||
branches:
|
|
||||||
- "*"
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build-linux-i386:
|
build-linux-i386:
|
||||||
|
|
8
.github/workflows/tests.yml
vendored
8
.github/workflows/tests.yml
vendored
|
@ -1,12 +1,6 @@
|
||||||
name: Tests
|
name: Tests
|
||||||
|
|
||||||
on:
|
on: [push, pull_request]
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- "*"
|
|
||||||
pull_request:
|
|
||||||
branches:
|
|
||||||
- "*"
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
tests-linux-i386:
|
tests-linux-i386:
|
||||||
|
|
|
@ -470,7 +470,7 @@ bool CDedicatedSteamApplication::Create( )
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
int main(int argc, char **argv)
|
int main(int argc, char **argv)
|
||||||
{
|
{
|
||||||
#ifndef POSIX
|
#if !defined( POSIX ) && !defined( PLATFORM_64BITS )
|
||||||
_asm
|
_asm
|
||||||
{
|
{
|
||||||
fninit
|
fninit
|
||||||
|
|
3
wscript
3
wscript
|
@ -394,7 +394,8 @@ def configure(conf):
|
||||||
'/Zc:forScope',
|
'/Zc:forScope',
|
||||||
'/Zc:wchar_t',
|
'/Zc:wchar_t',
|
||||||
'/GR',
|
'/GR',
|
||||||
'/TP'
|
'/TP',
|
||||||
|
'/EHsc'
|
||||||
]
|
]
|
||||||
|
|
||||||
if conf.options.BUILD_TYPE == 'debug':
|
if conf.options.BUILD_TYPE == 'debug':
|
||||||
|
|
Loading…
Reference in a new issue