This repository was archived by the owner on Jan 29, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 222
Project rename: Proxy -> Proxy 4 #302
Merged
mingxwa
merged 17 commits into
microsoft:main
from
SidneyCogdill:user/sidney/proxy4-rename
Jun 5, 2025
Merged
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
a7c8c13
Move headers to v4 subdir
7ff5492
rename header guard and macros
ea887ce
add shim headers
f01e23e
rename CMake project and target names
a97b539
modify CMake scripts, part 1
79130c5
modify CMake scripts, part 2
248e06a
use pro::v4 in implementation
89358f7
use nested namespace declaration + move proxy.ixx to v4 subdirectory
9b264f0
`___PRO_4_` -> `___PRO4_`
0f7340b
move + improve version-less macros
4194098
rename: `PROXY_4`` -> `PROXY4` for include guards
ea27adc
Add include guard for shim headers
77a10bc
provide diagnostic for ambiguous `__msft_lib_proxy`
2836362
use version-less name for internal macros
f3bd577
proper diagnostic for `__msft_lib_proxy`
6272592
rename to `msft_proxy::proxy4`
7de240c
undefine macro before redefine
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| @PACKAGE_INIT@ | ||
|
|
||
| include("${CMAKE_CURRENT_LIST_DIR}/proxy4Targets.cmake") | ||
|
|
||
| set(proxy4_INCLUDE_DIR "@PACKAGE_CMAKE_INSTALL_INCLUDEDIR@") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,25 @@ | ||
|
|
||
| if(NOT DEFINED proxy4_INCLUDE_DIR) | ||
| message(FATAL_ERROR "proxy4_INCLUDE_DIR must be defined to use this script.") | ||
| endif() | ||
|
|
||
| message(STATUS "Declaring `msft_proxy::proxy4_module` target for include path ${proxy4_INCLUDE_DIR}") | ||
|
|
||
| add_library(msft_proxy4_module) | ||
| set_target_properties( | ||
| msft_proxy4_module | ||
| PROPERTIES | ||
| SYSTEM TRUE | ||
| EXCLUDE_FROM_ALL TRUE | ||
| ) | ||
|
|
||
| add_library(msft_proxy::proxy4_module ALIAS msft_proxy4_module) | ||
| target_sources(msft_proxy4_module PUBLIC | ||
| FILE_SET CXX_MODULES | ||
| BASE_DIRS ${proxy4_INCLUDE_DIR} | ||
| FILES | ||
| ${proxy4_INCLUDE_DIR}/proxy/v4/proxy.ixx | ||
| ) | ||
| target_compile_features(msft_proxy4_module PUBLIC cxx_std_20) | ||
| target_link_libraries(msft_proxy4_module PUBLIC msft_proxy::proxy4) | ||
|
|
||
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.