2020-12-16 11:44:07 +00:00
|
|
|
# source-engine
|
|
|
|
The main purpose of this repository is to port the engine for other platforms.
|
|
|
|
# Goals
|
|
|
|
* fixing bugs
|
|
|
|
* NEON support
|
|
|
|
* DXVK support
|
|
|
|
* remove unnecessary dependencies
|
|
|
|
* Elbrus port
|
|
|
|
* Arm(android) port
|
|
|
|
* improve performance
|
|
|
|
* replace current buildsystem with waf
|
|
|
|
* rewrite achivement system( to work without steam )
|
2020-12-16 12:07:31 +00:00
|
|
|
# How to Build?
|
|
|
|
On Linux:
|
|
|
|
1. Clone repo ( ```git clone https://github.com/nillerusr/source-engine```)
|
|
|
|
2. Run ```git submodule init && git submodule update```
|
|
|
|
3. Build
|
|
|
|
```
|
|
|
|
cd thirdparty/
|
|
|
|
./build.sh
|
|
|
|
cd ../
|
|
|
|
./createallprojects
|
|
|
|
./build.sh everything
|
|
|
|
```
|