-
Notifications
You must be signed in to change notification settings - Fork 8
Contributing
To clone the repo, run, use this command
git clone https://github.com/tfslabs/vlmcsd.gitTo build with make, make sure you have installed gcc, make, and glibc
You can try install GNU Windows. (How to install on Windows?)
Depends on your distribution, the installation may differ.
# Ubuntu/Debian
apt install -y gcc make
# Fedora
dnf groupinstall "Development Tools"
# Arch Linux
pacman -S gcc base-develTo contribute, you may need Visual Studio 2022. Required Visual Studio 2022 SDKs:
- C++ Windows XP Support for VS 2017 (v141) Tools
- Windows 10 SDK (10.0.18362.0)
- Windows Universal C Runtime
makeFor advanced build with make, you can use
make helpTo build, Dockerfile are provided in the .docker folder. Note that the multi-arch may need to include --platform. Currently, vlmcsd supports these following architecture(s)
linux/amd64linux/arm64/v8linux/ppc64lelinux/s390xlinux/riscv64
For example, the command below supports building vlmcsd for Linux running on AMD64
docker build --platform linux/amd64 -f .docker/Dockerfile -t theflightsims/vlmcsd:linux-amd64 .For building with multiple architecture(s), there are .docker/quick_build.sh (for Linux) and .docker/quick_build.cmd (for Windows).
In the VisualStudio folder, there are some built-in projects.
However, since this project is a part of Windows Server Management Tool, you may need to clone the whole repo, before using Visual Studio, because the full Visual Studio Solution are already configured with valid build configurations.
- License Manager database exports to VLMCSD
For the License Manager database exports to VLMCSD, please review in the License Manager manual.
- External database
VLMCSD Database is the binary, external to the internal VLMCSD database. You can configure it in
vlmcsd.ini, or providing the command line.
- Internal database
The internal VLMCSD databases are, both includes in
src/kmsdata.candsrc/kmsdata-full.cfiles.
To quick validating the Volume License Management Service DAEMON, you can use a quick Python3 script in the .test