forked from dotnet/runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[mono] Include hostpolicy/hostfxr in mono desktop runtime packs (dotn…
…et#42729) Currently mono desktop runtime packs don't include `libhostfxr.*` and `libhostpolicy*` libs needed for corehost in self contained mode. Co-authored-by: Alexander Köplinger <[email protected]>
- Loading branch information
1 parent
b72b13e
commit d260e95
Showing
7 changed files
with
31 additions
and
14 deletions.
There are no files selected for viewing
This file contains 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 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 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 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 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 |
---|---|---|
@@ -1,14 +1,20 @@ | ||
add_subdirectory(hostcommon) | ||
add_subdirectory(apphost) | ||
add_subdirectory(dotnet) | ||
add_subdirectory(nethost) | ||
add_subdirectory(test_fx_ver) | ||
add_subdirectory(fxr) | ||
add_subdirectory(hostpolicy) | ||
if(RUNTIME_FLAVOR STREQUAL "Mono") | ||
add_subdirectory(hostcommon) | ||
add_subdirectory(fxr) | ||
add_subdirectory(hostpolicy) | ||
else() | ||
add_subdirectory(hostcommon) | ||
add_subdirectory(apphost) | ||
add_subdirectory(dotnet) | ||
add_subdirectory(nethost) | ||
add_subdirectory(test_fx_ver) | ||
add_subdirectory(fxr) | ||
add_subdirectory(hostpolicy) | ||
|
||
add_subdirectory(test) | ||
add_subdirectory(test) | ||
|
||
if(CLR_CMAKE_TARGET_WIN32) | ||
add_subdirectory(comhost) | ||
add_subdirectory(ijwhost) | ||
endif() | ||
if(CLR_CMAKE_TARGET_WIN32) | ||
add_subdirectory(comhost) | ||
add_subdirectory(ijwhost) | ||
endif() | ||
endif() |
This file contains 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 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