Skip to content
Merged
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
5 changes: 2 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# The version number.
set(AGENT_VERSION_MAJOR 2)
set(AGENT_VERSION_MINOR 7)
set(AGENT_VERSION_MINOR 8)
set(AGENT_VERSION_PATCH 0)
set(AGENT_VERSION_BUILD 13)
set(AGENT_VERSION_BUILD 1)
set(AGENT_VERSION_RC "")

# This minimum version is to support Visual Studio 2019 and C++ feature checking and FetchContent
Expand All @@ -27,7 +27,6 @@ set(CMAKE_CXX_STANDARD 20)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_CXX_EXTENSIONS OFF)
set(CXX_COMPILE_FEATURES cxx_std_20)
set(CMAKE_OSX_DEPLOYMENT_TARGET 15.0)

project(cppagent LANGUAGES C CXX)

Expand Down
3 changes: 1 addition & 2 deletions conan/profiles/macos
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,9 @@ include(default)
[settings]
compiler=apple-clang
compiler.cppstd=20
os.version=15.0

[platform_tool_requires]
cmake/>3.26.0
cmake/>4.0

Comment on lines 7 to 9


5 changes: 5 additions & 0 deletions conan/profiles/vs32
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,8 @@ compiler.runtime=static
compiler.runtime_type=Release
build_type=Release

[platform_tool_requires]
cmake/>4.3

[replace_tool_requires]
cmake/*: cmake/>4.3
Comment on lines +11 to +15
8 changes: 8 additions & 0 deletions conan/profiles/vs32debug
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,11 @@ arch=x86
compiler.runtime=static
compiler.runtime_type=Debug
build_type=Debug



[platform_tool_requires]
cmake/>4.3

[replace_tool_requires]
cmake/*: cmake/>4.3
Comment on lines +13 to +17
5 changes: 5 additions & 0 deletions conan/profiles/vs32shared
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,8 @@ compiler.runtime=dynamic
compiler.runtime_type=Release
build_type=Release

[platform_tool_requires]
cmake/>4.3

[replace_tool_requires]
cmake/*: cmake/>4.3
Comment on lines +11 to +15
6 changes: 6 additions & 0 deletions conan/profiles/vs64
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,9 @@ arch=x86_64
compiler.runtime=static
compiler.runtime_type=Release
build_type=Release

[platform_tool_requires]
cmake/>4.3

[replace_tool_requires]
cmake/*: cmake/>4.3
Comment on lines +11 to +15
6 changes: 6 additions & 0 deletions conan/profiles/vs64debug
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,9 @@ arch=x86_64
compiler.runtime=static
compiler.runtime_type=Debug
build_type=Debug

[platform_tool_requires]
cmake/>4.3

[replace_tool_requires]
cmake/*: cmake/>4.3
Comment on lines +11 to +15
5 changes: 5 additions & 0 deletions conan/profiles/vs64shared
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,8 @@ build_type=Release
[options]
shared=True

[platform_tool_requires]
cmake/>4.3

[replace_tool_requires]
cmake/*: cmake/>4.3
Comment on lines +14 to +18
Loading
Loading