Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,15 @@ arch=x86_64
compiler=msvc
# Both libnode and webrtc-audio-processing require C++20
compiler.cppstd=20
compiler.version=192
compiler.version=195
compiler.runtime=dynamic
compiler.runtime_type=Debug
build_type=Debug
[options]
Overte/*:qt_source=source
# Required for building oneTBB.
hwloc/*:shared=True

[tool_requires]
# Many of our dependencies don't support CMake 4 yet.
!cmake/*: cmake/[>=3 <4]
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ arch=x86_64
compiler=msvc
# Both libnode and webrtc-audio-processing require C++20
compiler.cppstd=20
compiler.version=192
compiler.version=195
compiler.runtime=dynamic
compiler.runtime_type=Debug
build_type=Debug
Expand All @@ -14,3 +14,7 @@ tools.cmake.cmaketoolchain:generator=Ninja
Overte/*:qt_source=source
# Required for building oneTBB.
hwloc/*:shared=True

[tool_requires]
# Many of our dependencies don't support CMake 4 yet.
!cmake/*: cmake/[>=3 <4]
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,14 @@ arch=x86_64
compiler=msvc
# Both libnode and webrtc-audio-processing require C++20
compiler.cppstd=20
compiler.version=192
compiler.version=195
compiler.runtime=dynamic
compiler.runtime_type=Release
build_type=Release
[options]
Overte/*:qt_source=source
# Required for building oneTBB.
hwloc/*:shared=True
[tool_requires]
# Many of our dependencies don't support CMake 4 yet.
!cmake/*: cmake/[>=3 <4]
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ arch=x86_64
compiler=msvc
# Both libnode and webrtc-audio-processing require C++20
compiler.cppstd=20
compiler.version=192
compiler.version=195
compiler.runtime=dynamic
compiler.runtime_type=Release
build_type=Release
Expand All @@ -14,3 +14,7 @@ tools.cmake.cmaketoolchain:generator=Ninja
Overte/*:qt_source=source
# Required for building oneTBB.
hwloc/*:shared=True

[tool_requires]
# Many of our dependencies don't support CMake 4 yet.
!cmake/*: cmake/[>=3 <4]
Original file line number Diff line number Diff line change
@@ -1,16 +1,20 @@
[settings]
os=Windows
os_build=Windows
arch=x86_64
arch_build=x86_64
compiler=Visual Studio
compiler=msvc
# Both libnode and webrtc-audio-processing require C++20
compiler.cppstd=20
compiler.version=16
build_type=Release
compiler.version=195
compiler.runtime=dynamic
compiler.runtime_type=Release
build_type=RelWithDebInfo
# libnode's build system seems to only support Release and Debug on Windows. RelWithDebInfo is not a valid option.
libnode/*:build_type=Release
[options]
Overte/*:qt_source=source
# Required for building oneTBB.
hwloc/*:shared=True

[tool_requires]
# Many of our dependencies don't support CMake 4 yet.
!cmake/*: cmake/[>=3 <4]
8 changes: 0 additions & 8 deletions winprepareVS19.bat

This file was deleted.

3 changes: 1 addition & 2 deletions winprepareVS22.bat
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,4 @@ conan install . -b missing -pr=tools/conan-profiles/vs-22-debug -of build
conan cache clean "*" -sbd
ECHO Running cmake
cmake --preset conan-default
ECHO CMake has finished
pause
ECHO CMake has finished
7 changes: 7 additions & 0 deletions winprepareVS26.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
ECHO Running conan
Comment thread
OfficialR3ido101 marked this conversation as resolved.
conan install . -b missing -pr=tools/conan-profiles/vs-26-release -of build
conan install . -b missing -pr=tools/conan-profiles/vs-26-debug -of build
conan cache clean "*" -sbd
ECHO Running cmake
cmake --preset conan-default
ECHO CMake has finished
Loading