Modified source engine (2017) developed by valve and leaked in 2020. Not for commercial purporses
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
849 B

4 years ago
# source-engine
4 years ago
# Goals
* fixing bugs
* ~~NEON support~~
4 years ago
* DXVK support
* remove unnecessary dependencies
* Elbrus port
* ~~Arm(android) port~~
4 years ago
* improve performance
* ~~replace current buildsystem with waf~~
4 years ago
* rewrite achivement system( to work without steam )
* 64-bit support
# How to Build?
Clone repo and change directory:
```
git clone https://github.com/nillerusr/source-engine --recursive --depth 1
cd source-engine
```
On Linux:
dependencies:
fontconfig, freetype2, OpenAL, SDL2, libbz2, libcurl, libjpeg, libpng, zlib
4 years ago
```
3 years ago
./waf configure -T debug
./waf build
4 years ago
```
On Linux for Android(**Note: only Android NDK r10e is supported**):
```
export ANDROID_NDK=/path/to/ndk
./waf configure -T debug --android=armeabi-v7a,4.9,21
./waf build
```
On Windows/MacOS:
**TODO(WAF is not configured for Windows/MacOS. Use VPC as temporary solution)**