-
Notifications
You must be signed in to change notification settings - Fork 44
Building the Engine
Viktor Kovacs edited this page Oct 28, 2018
·
42 revisions
You can build all of the modules with Visual Studio by following these steps.
- Build wxWidgets.
- Download and install wxWidgets from here.
- Install it in the default location.
- Open the solution from
build\msw\wx_vc15.sln
. - Build with Debug/x64 and Release/x64 configuration.
- Set the
WXWIDGETS_DIR
environment variable to the installation folder (by defaultC:\wxWidgets-3.1.1
);
- Build VisualScriptEngine:
- Open the solution from
VisualScriptEngine\Make\VS\VisualScript.sln
. - Build the solution.
- Open the solution from
The GCC compilation happens with a makefile. It only works for the core modules.
- Build VisualScriptEngine:
- Navigate to the
VisualScriptEngine\Make\GCC
folder. - Type
make
.
- Navigate to the