The default Release build is generally recommended for consuming the library, while the Debug build is suitable for experiments and extensions.
It is highly recommended to use Clang for optimal compatibility and performance. While other toolchains may work, they have not been carefully tested and may cause issues during compilation.
There are two options to prepare a build environment for torpedo
:
- Using tools and dependencies already available on your system, as long as they can be detected by CMake.
- Using a Conda environment to manage dependencies, including Vulkan and build tools like CMake, Ninja, etc.
Using Conda to manage dependencies is preferred as it ensures torpedo
is well-contained and avoids the need for admin
privileges when installing tools or dependencies. The repo provides .yml
files to set up a Conda environment with
all necessary packages for each OS, and they assume no prerequisites on the host system.
Currently on Windows, Visual Studio version >=17.9.7
is required for both build options. The library only needs
the VS BuildTools with the following components in Desktop development with C++:
- MSVC v143 - VS2022 C++ x86/64 build tools (MSVC
>=19.39
) - Windows SDK (either 10 or 11)
Set up the environment with conda
/mamba
:
conda env create --file env-win64.yml
conda activate torpedo
Additionally, the Slang compiler version 2024.17
needs
to be downloaded and extracted to a location whose path is specified during CMake configuration.
The following components are required:
CMake
version3.25
or greaterNinja
Clang
version19.1.7
or greaterVulkanSDK
version1.4.304
or greater with the following components:glslangValidator
,slangc
, andVMA
There is no need for GCC on Linux, as the build favors Clang by default.
Set up the environment with conda
/mamba
:
conda env create --file env-linux.yml
conda activate torpedo
Additionally, the Slang compiler version 2024.17
needs
to be downloaded and extracted to a location whose path is specified during CMake configuration.
There is a small limitation when setting up Conda environment on Linux: the xorg-dev
library, which provides support
for X11, is not well maintained on conda-forge
. This only causes issues when performing surface rendering on systems
using X11. As long as tpd::SurfaceRenderer
is not used, the Conda environment works fine at runtimes.
The following components are required:
CMake
version3.25
or greaterNinja
Clang
version19.1.7
or greaterVulkanSDK
version1.4.304
or greater with the following components:glslangValidator
,slangc
, andVMA
Configure and build the project:
cmake -B build -G Ninja
cmake --build build
There are additional CMake options to further fine-tune the configuration
-DTORPEDO_BUILD_DEMO
(BOOL
): build demo targets, enabled automatically for Debug build if not explicitly set on the CLI. For other builds, the default option isOFF
unless explicitly set otherwise on the CLI.-DSLANG_COMPILER_DIR
(PATH
): path to the directory containing theslangc
compiler. This option is necessary when buildingtorpedo
within the Conda environment if the compiler is not installed in default search paths.-DCMAKE_INSTALL_PREFIX
(PATH
): automatically set toCONDA_PREFIX
if the variable is defined and the option is not explicitly set on the CLI. Note thatCONDA_PREFIX
is automatically defined when aconda
/mamba
environment activated.
Install the library:
cmake --install build
Notes when using Conda environment
-
The installation path is automatically set to
CONDA_PREFIX
unlessCMAKE_INSTALL_PREFIX
is explicitly set during CMake configuration. -
The
-DSLANG_COMPILER_DIR
may need to be explicitly set to the directory containingslangc
to help CMake find it if the compiler is not installed in system's default search paths (i.e. when not using a VulkanSDK):
cmake -B build -G Ninja -DSLANG_COMPILER_DIR=path/to/dir
-
If the system already has VulkanSDK installed but building
torpedo
from within Conda is desirable, theVULKAN_SDK
environment variable must be set toCONDA_PREFIX
(Linux) orCONDA_PREFIX/Library
(Windows) prior to configuration. -
Additionally, if your system already installs a default compiler, it may be necessary to specify Clang for CMake:
# Replace with the full path to clang/clang++ in the conda environment
# if the system also has Clang installed
cmake -B build -G Ninja -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++
- The C/C++ compilers detected by CMake should ideally be like the following:
-- The C compiler identification is Clang 19.1.7
-- The CXX compiler identification is Clang 19.1.7
To configure for Debug build, define the -DCMAKE_BUILD_TYPE
as Debug
:
cmake -B build -DCMAKE_BUILD_TYPE=Debug -G Ninja
cmake --build build
Notes when using Conda environment
- For debug runs, the library requests and enables the
VK_LAYER_KHRONOS_validation
layer. This was not included in the provided.yml
files must be installed fromconda-forge
:
conda install -c conda-forge lldb=19.1.7 vulkan-validation-layers=1.4.304
- At runtimes, set the
VK_LAYER_PATH
environment variable to the directory containing the installed layers:
# Windows (PowerShell)
$env:VK_LAYER_PATH="$env:CONDA_PREFIX/Library/bin"
# Linux
export VK_LAYER_PATH=$CONDA_PREFIX/share/vulkan/explicit_layer.d
The
VK_LAYER_PATH
environment variable is ignored if the library is being consumed inside a shell WITH elevated privileges, see the docs for more information.
- To set this variable each time the
torpedo
environment is activated and unset it when exiting the environment, an activate/deactivate script can be set up to automate the process:
New-Item -Path "$env:CONDA_PREFIX\etc\conda\activate.d\torpedo_activate.ps1" -ItemType File
Add-Content -Path "$env:CONDA_PREFIX\etc\conda\activate.d\torpedo_activate.ps1" -Value '$env:VK_LAYER_PATH="$env:CONDA_PREFIX\Library\bin"'
New-Item -Path "$env:CONDA_PREFIX\etc\conda\deactivate.d\torpedo_deactivate.ps1" -ItemType File
Add-Content -Path "$env:CONDA_PREFIX\etc\conda\deactivate.d\torpedo_deactivate.ps1" -Value 'Remove-Item env:VK_LAYER_PATH'
echo 'export VK_LAYER_PATH=$CONDA_PREFIX/share/vulkan/explicit_layer.d' > $CONDA_PREFIX/etc/conda/activate.d/torpedo_activate.sh
echo 'unset VK_LAYER_PATH' > $CONDA_PREFIX/etc/conda/deactivate.d/torpedo_deactivate.sh