code review changes

This commit is contained in:
Pratik Mankawde
2025-12-03 17:40:42 +00:00
parent 7f09fbe807
commit 1f2f05d320
2 changed files with 14 additions and 6 deletions

View File

@@ -116,11 +116,12 @@ jobs:
env:
BUILD_TYPE: ${{ inputs.build_type }}
run: |
cmake .. \
cmake \
-G '${{ runner.os == 'Windows' && 'Visual Studio 17 2022' || 'Ninja' }}' \
-DCMAKE_TOOLCHAIN_FILE:FILEPATH=build/generators/conan_toolchain.cmake \
-DCMAKE_BUILD_TYPE="${BUILD_TYPE}" \
${{ inputs.cmake_args }}
${{ inputs.cmake_args }} \
..
- name: Build the binary
working-directory: ${{ inputs.build_dir }}