-
Notifications
You must be signed in to change notification settings - Fork 177
Compiling ReClassEx
Aidan Khoury edited this page Dec 29, 2016
·
1 revision
- Open scintilla/vcbuild.
- Open SciLexer.sln in Visual Studio.
- When prompted to upgrade VC++ compiler and libraries select "OK".
- SciLexer (project) -> Properties -> VC++ -> Code Generation -> Enable Function-Level Linking: Yes
- Build the project. It should be in Debug by default.
- Build the project in Release. The reason we generate 2 libraries is because ReClass 2016 uses the debug library in the debug profile and the release library in the release profile.
- Close the solution.
Building BeaEngine requires CMake.
- For x64 open the beaengine\build_2015_64 folder and build using BeaEngine.sln. Build for Release or Debug.
- For x86 open the beaengine\build_2015 folder and build using BeaEngine.sln. Build for Release or Debug.
- For PDB symbol loading, the DIA SDK is needed. Add the DIA SDK include path and library path to the project.
- Usually located at '$(VSInstallDir)\DIA SDK\include' and '$(VSInstallDir)\DIA SDK\lib'
- Open up ReClass.sln in the root repository folder.
- When prompted to upgrade VC++ compiler and libraries select "OK".
- Build the project. x64 or x86, Debug or Release.
You should now be able to find ReClass.exe or ReClass_Dbg.exe under the BIN folder.