-
-
Notifications
You must be signed in to change notification settings - Fork 71
Build and install
hipersayanX edited this page Sep 13, 2025
·
6 revisions
- Xcode Command Line Tools (xcode-select --install from a terminal)
For building akvirtualcamera, open a terminal and run the following commands:
Note: Replace /path/to with the actual path of the sources directory.
cmake -S /path/to/akvirtualcamera -B /path/to/akvirtualcamera-build-directory
make -C /path/to/akvirtualcamera-build-directory
cmake -G "MSYS Makefiles" -S /path/to/akvirtualcamera -B /path/to/akvirtualcamera-build-directory
make -C /path/to/akvirtualcamera-build-directory
cmake -G "Visual Studio 16 2019" -S /path/to/akvirtualcamera -B /path/to/akvirtualcamera-build-directory
cmake --build /path/to/akvirtualcamera-build-directory
For other generators check CMake documentation.
You can also compile akvirtualcamera using cmake-gui.
The generated plugin files are located at /path/to/akvirtualcamera-build-directory/build.
Note: For Windows, you must build both 32 and 64 bits versions, and put x86 and x64 folders together in the same folder.
Note: Replace /path/to with the actual path of the plugin.
Is highly recommendable linking the plugin instead of copying it to the DAL folder, for doing so run the following command as root:
ln -s /path/to/AkVirtualCamera.plugin /Library/CoreMediaIO/Plug-Ins/DAL/AkVirtualCamera.plugin
No extra steps are required.