Skip to content

Building ACRE2 Extensions

jonpas edited this page Sep 8, 2016 · 4 revisions

Requirements

Build Project (Windows)

This is done automatically when doing a release build with compile option.

  • Open a command prompt and navigate to the folder in which you downloaded or Git cloned out the ACRE2 source.

32-bit

  • Navigate to the extensions\vcproj directory.
  • Run cmake ..
  • Visual Studio project should be selected by default, if not use the -G option and choose the right 32-bit CMake generator.
  • Compile projects.

64-bit

Only ACRE2TS project (acre2_win64.dll) TeamSpeak plugin can be built in 64-bit.

  • Navigate to the extensions\vcproj64 directory.
  • Run cmake .. -DUSE_64BIT_BUILD=ON -G "Visual Studio 14 2015 Win64" (replace generator for any other 64-bit Visual Studio generator)

Extensions files will also be copied to their appropriate locations automatically after compilation (ready for test and release builds).