7.1 KiB
Creating an Installer
Last Updated on February 21, 2021
Follow the build guide to figure out how to build Vircadia for your platform.
During generation, CMake should produce an install
target and a package
target.
The install
target will copy the Vircadia targets and their dependencies to your CMAKE_INSTALL_PREFIX
.
This variable is set by the project(hifi)
command in CMakeLists.txt
to C:/Program Files/hifi
and stored in build/CMakeCache.txt
Packaging
To produce an installer, run the package
target. However you will want to follow the steps specific to your platform below.
Windows
Prerequisites
To produce an executable installer on Windows, the following are required:
-
Nullsoft Scriptable Install System - 3.04
Install using defaults (will install toC:\Program Files (x86)\NSIS
) -
UAC Plug-in for Nullsoft - 0.2.4c
- Extract Zip
- Copy
UAC.nsh
toC:\Program Files (x86)\NSIS\Include\
- Copy
Plugins\x86-ansi\UAC.dll
toC:\Program Files (x86)\NSIS\Plugins\x86-ansi\
- Copy
Plugins\x86-unicode\UAC.dll
toC:\Program Files (x86)\NSIS\Plugins\x86-unicode\
-
nsProcess Plug-in for Nullsoft - 1.6 (use the link marked nsProcess_1_6.7z)
- Extract Zip
- Copy
Include\nsProcess.nsh
toC:\Program Files (x86)\NSIS\Include\
- Copy
Plugins\nsProcess.dll
toC:\Program Files (x86)\NSIS\Plugins\x86-ansi\
- Copy
Plugins\nsProcessW.dll
toC:\Program Files (x86)\NSIS\Plugins\x86-unicode\
-
InetC Plug-in for Nullsoft - 1.0
- Extract Zip
- Copy
Plugin\x86-ansi\InetC.dll
toC:\Program Files (x86)\NSIS\Plugins\x86-ansi\
- Copy
Plugin\x86-unicode\InetC.dll
toC:\Program Files (x86)\NSIS\Plugins\x86-unicode\
-
NSISpcre Plug-in for Nullsoft - 1.0
- Extract Zip
- Copy
NSISpre.nsh
toC:\Program Files (x86)\NSIS\Include\
- Copy
NSISpre.dll
toC:\Program Files (x86)\NSIS\Plugins\x86-ansi\
-
nsisSlideshow Plug-in for Nullsoft - 1.7
- Extract Zip
- Copy
bin\nsisSlideshow.dll
toC:\Program Files (x86)\NSIS\Plugins\x86-ansi\
- Copy
bin\nsisSlideshowW.dll
toC:\Program Files (x86)\NSIS\Plugins\x86-unicode\
-
- Download both Zips and unzip
- Copy
nsisunz\Release\nsisunz.dll
toC:\Program Files (x86)\NSIS\Plugins\x86-ansi\
- Copy
NSISunzU\Plugin unicode\nsisunz.dll
toC:\Program Files (x86)\NSIS\Plugins\x86-unicode\
-
ApplicationID plug-in for Nullsoft - 1.0
- Download
Pre-built DLLs
- Extract Zip
- Copy
Release\ApplicationID.dll
toC:\Program Files (x86)\NSIS\Plugins\x86-ansi\
- Copy
ReleaseUnicode\ApplicationID.dll
toC:\Program Files (x86)\NSIS\Plugins\x86-unicode\
- Download
-
- Install version 10.15.0 LTS (or greater)
Code Signing (optional)
For code signing to work, you will need to set the HF_PFX_FILE
and HF_PFX_PASSPHRASE
environment variables to be present during CMake runtime and globally as we proceed to package the installer.
Creating the Installer
- Perform a clean cmake from a new terminal.
- Open the
vircadia.sln
solution with elevated (administrator) permissions on Visual Studio and select the Release configuration. - Build the solution.
- Build
packaged-server-console-npm-install
(found under hidden/Server Console) - Build
packaged-server-console
(found under Server Console)
This will add 2 folders tobuild\server-console\
-
server-console-win32-x64
andx64
- Build CMakeTargets->PACKAGE
The installer is now available inbuild\_CPack_Packages\win64\NSIS
FAQ
- Problem: Failure to open a file.
File: failed opening file "\FOLDERSHARE\XYZSRelease\...\Credits.rtf" Error in script "C:\TFS\XYZProject\Releases\NullsoftInstaller\XYZWin7Installer.nsi" on line 77 -- aborting creation process
- Cause: The complete path (current directory + relative path) has to be < 260 characters to any of the relevant files.
- Solution: Move your build and packaging folder as high up in the drive as possible to prevent an overage.
OS X
-
npm Install version 12.16.3 LTS
-
Perform a clean CMake.
-
Perform a Release build of ALL_BUILD
-
Perform a Release build of
packaged-server-console
This will add a folder tobuild\server-console\
-
Sandbox-darwin-x64 -
Perform a Release build of
package
Installer is now available in `build/_CPack_Packages/Darwin/DragNDrop
Linux
Server
Ubuntu 18.04 | .deb
- Ensure you are using an Ubuntu 18.04 system.
- Get and bootstrap Vircadia Builder.
git clone https://github.com/vircadia/vircadia-builder.git cd vircadia-builder chmod +x vircadia-builder
- Run Vircadia Builder to build the server. See here for possible environment variables and settings.
./vircadia-builder --build server
- If Vircadia Builder needed to install dependencies and asks you to run it again then do so.
./vircadia-builder --build server
- Navigate to the
pkg-scripts
directory.cd ../Vircadia/source/pkg-scripts/
- Generate the .deb package. Set
DEBVERSION
to a valid semantic version value e.g. "2021.1.0".DEBVERSION="Semver e.g. 2021.1.0" DEBEMAIL="your-email@somewhere.com" DEBFULLNAME="Your Full Name" ./make-deb-server
- If successful, the generated .deb package will be in the
pkg-scripts
folder.
Amazon Linux 2 | .rpm
- Ensure you are using an Amazon Linux 2 system.
- Update the system and install dependencies.
sudo yum update -y sudo yum install git -y sudo yum install rpm-build
- Get and bootstrap Vircadia Builder.
git clone https://github.com/vircadia/vircadia-builder.git cd vircadia-builder sudo ./install_amazon_linux_deps.sh chmod +x vircadia-builder
- Run Vircadia Builder to build the server. See here for possible environment variables and settings.
./vircadia-builder --build server
- If Vircadia Builder needed to install dependencies and asks you to run it again then do so.
./vircadia-builder --build server
- Navigate to the
pkg-scripts
directory.cd ../Vircadia/source/pkg-scripts/
- Generate the .rpm package. Set
RPMVERSION
to a valid semantic version value e.g. "2021.1.0".RPMVERSION="Semver e.g. 2021.1.0" ./make-rpm-server
- If successful, the generated .rpm package will be in the
pkg-scripts
folder.