-
Notifications
You must be signed in to change notification settings - Fork 44
Building the Engine
Viktor Kovacs edited this page Jun 4, 2020
·
42 revisions
- Generate project files with cmake to the Build directory.
- Visual Studio 2017:
cmake -G "Visual Studio 15 2017 Win64" ..
- Visual Studio 2019:
cmake -G "Visual Studio 16 2019" -A "x64"
- Visual Studio 2017:
- Open the solution from Build\VisualScriptEngine.sln.
- Build the solution.
Example for generating a Visual Studio project:
mkdir Build
cd Build
cmake -G "Visual Studio 15 2017 Win64" ..
cd ..
The following compilers are tested for the core modules.
- Windows
- Visual Studio 2017
- Visual Studio 2019
- Linux
- gcc-7
- clang-7
- clang-8
- OSX
- XCode 10
- XCode 11
All codes are compiling with the maximum warning level on every compilers.