-
Notifications
You must be signed in to change notification settings - Fork 4.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Handle cases when coreclr configuration is different from libraries
- Loading branch information
Showing
15 changed files
with
175 additions
and
197 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,5 +1,4 @@ | ||
# Licensed to the .NET Foundation under one or more agreements. | ||
# The .NET Foundation licenses this file to you under the MIT license. | ||
|
||
add_subdirectory(static) | ||
add_subdirectory(standalone) |
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 |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# Licensed to the .NET Foundation under one or more agreements. | ||
# The .NET Foundation licenses this file to you under the MIT license. | ||
|
||
# Include directories | ||
include_directories(${CMAKE_CURRENT_LIST_DIR}/../json) | ||
include_directories(${CMAKE_CURRENT_LIST_DIR}/../fxr) | ||
|
||
# CMake does not recommend using globbing since it messes with the freshness checks | ||
list(APPEND SOURCES | ||
${CMAKE_CURRENT_LIST_DIR}/command_line.cpp | ||
${CMAKE_CURRENT_LIST_DIR}/corehost_init.cpp | ||
${CMAKE_CURRENT_LIST_DIR}/hostfxr.cpp | ||
${CMAKE_CURRENT_LIST_DIR}/fx_muxer.cpp | ||
${CMAKE_CURRENT_LIST_DIR}/fx_resolver.cpp | ||
${CMAKE_CURRENT_LIST_DIR}/fx_resolver.messages.cpp | ||
${CMAKE_CURRENT_LIST_DIR}/framework_info.cpp | ||
${CMAKE_CURRENT_LIST_DIR}/host_context.cpp | ||
${CMAKE_CURRENT_LIST_DIR}/sdk_info.cpp | ||
${CMAKE_CURRENT_LIST_DIR}/sdk_resolver.cpp | ||
) | ||
|
||
list(APPEND HEADERS | ||
${CMAKE_CURRENT_LIST_DIR}/../corehost_context_contract.h | ||
${CMAKE_CURRENT_LIST_DIR}/../hostpolicy.h | ||
${CMAKE_CURRENT_LIST_DIR}/../fx_definition.h | ||
${CMAKE_CURRENT_LIST_DIR}/../fx_reference.h | ||
${CMAKE_CURRENT_LIST_DIR}/../roll_fwd_on_no_candidate_fx_option.h | ||
${CMAKE_CURRENT_LIST_DIR}/command_line.h | ||
${CMAKE_CURRENT_LIST_DIR}/corehost_init.h | ||
${CMAKE_CURRENT_LIST_DIR}/fx_muxer.h | ||
${CMAKE_CURRENT_LIST_DIR}/fx_resolver.h | ||
${CMAKE_CURRENT_LIST_DIR}/framework_info.h | ||
${CMAKE_CURRENT_LIST_DIR}/host_context.h | ||
${CMAKE_CURRENT_LIST_DIR}/sdk_info.h | ||
${CMAKE_CURRENT_LIST_DIR}/sdk_resolver.h | ||
) | ||
|
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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# Licensed to the .NET Foundation under one or more agreements. | ||
# The .NET Foundation licenses this file to you under the MIT license. | ||
|
||
# Include directories | ||
include_directories(${CMAKE_CURRENT_LIST_DIR}/../fxr) | ||
include_directories(${CMAKE_CURRENT_LIST_DIR}/../json) | ||
|
||
# CMake does not recommend using globbing since it messes with the freshness checks | ||
list(APPEND SOURCES | ||
${CMAKE_CURRENT_LIST_DIR}/../json_parser.cpp | ||
${CMAKE_CURRENT_LIST_DIR}/../deps_format.cpp | ||
${CMAKE_CURRENT_LIST_DIR}/../deps_entry.cpp | ||
${CMAKE_CURRENT_LIST_DIR}/../host_startup_info.cpp | ||
${CMAKE_CURRENT_LIST_DIR}/../roll_forward_option.cpp | ||
${CMAKE_CURRENT_LIST_DIR}/../fx_definition.cpp | ||
${CMAKE_CURRENT_LIST_DIR}/../fx_reference.cpp | ||
${CMAKE_CURRENT_LIST_DIR}/../fxr/fx_ver.cpp | ||
${CMAKE_CURRENT_LIST_DIR}/../version.cpp | ||
${CMAKE_CURRENT_LIST_DIR}/../version_compatibility_range.cpp | ||
${CMAKE_CURRENT_LIST_DIR}/../runtime_config.cpp | ||
${CMAKE_CURRENT_LIST_DIR}/../bundle/info.cpp | ||
${CMAKE_CURRENT_LIST_DIR}/../bundle/reader.cpp | ||
${CMAKE_CURRENT_LIST_DIR}/../bundle/header.cpp | ||
) | ||
|
||
list(APPEND HEADERS | ||
${CMAKE_CURRENT_LIST_DIR}/../json_parser.h | ||
${CMAKE_CURRENT_LIST_DIR}/../deps_format.h | ||
${CMAKE_CURRENT_LIST_DIR}/../deps_entry.h | ||
${CMAKE_CURRENT_LIST_DIR}/../host_startup_info.h | ||
${CMAKE_CURRENT_LIST_DIR}/../roll_forward_option.h | ||
${CMAKE_CURRENT_LIST_DIR}/../fx_definition.h | ||
${CMAKE_CURRENT_LIST_DIR}/../fx_reference.h | ||
${CMAKE_CURRENT_LIST_DIR}/../fxr/fx_ver.h | ||
${CMAKE_CURRENT_LIST_DIR}/../version.h | ||
${CMAKE_CURRENT_LIST_DIR}/../version_compatibility_range.h | ||
${CMAKE_CURRENT_LIST_DIR}/../runtime_config.h | ||
${CMAKE_CURRENT_LIST_DIR}/../bundle/info.h | ||
${CMAKE_CURRENT_LIST_DIR}/../bundle/reader.h | ||
${CMAKE_CURRENT_LIST_DIR}/../bundle/header.h | ||
) | ||
|
||
|
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,5 +1,4 @@ | ||
# Licensed to the .NET Foundation under one or more agreements. | ||
# The .NET Foundation licenses this file to you under the MIT license. | ||
|
||
add_subdirectory(static) | ||
add_subdirectory(standalone) |
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 |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# Licensed to the .NET Foundation under one or more agreements. | ||
# The .NET Foundation licenses this file to you under the MIT license. | ||
|
||
# Include directories | ||
include_directories(${CMAKE_CURRENT_LIST_DIR}/../fxr) | ||
include_directories(${CMAKE_CURRENT_LIST_DIR}/../json) | ||
|
||
# CMake does not recommend using globbing since it messes with the freshness checks | ||
list(APPEND SOURCES | ||
${CMAKE_CURRENT_LIST_DIR}/args.cpp | ||
${CMAKE_CURRENT_LIST_DIR}/breadcrumbs.cpp | ||
${CMAKE_CURRENT_LIST_DIR}/coreclr.cpp | ||
${CMAKE_CURRENT_LIST_DIR}/deps_resolver.cpp | ||
${CMAKE_CURRENT_LIST_DIR}/hostpolicy_context.cpp | ||
${CMAKE_CURRENT_LIST_DIR}/hostpolicy.cpp | ||
${CMAKE_CURRENT_LIST_DIR}/hostpolicy_init.cpp | ||
${CMAKE_CURRENT_LIST_DIR}/../bundle/dir_utils.cpp | ||
${CMAKE_CURRENT_LIST_DIR}/../bundle/extractor.cpp | ||
${CMAKE_CURRENT_LIST_DIR}/../bundle/file_entry.cpp | ||
${CMAKE_CURRENT_LIST_DIR}/../bundle/manifest.cpp | ||
${CMAKE_CURRENT_LIST_DIR}/../bundle/runner.cpp | ||
) | ||
|
||
list(APPEND HEADERS | ||
${CMAKE_CURRENT_LIST_DIR}/args.h | ||
${CMAKE_CURRENT_LIST_DIR}/breadcrumbs.h | ||
${CMAKE_CURRENT_LIST_DIR}/coreclr.h | ||
${CMAKE_CURRENT_LIST_DIR}/deps_resolver.h | ||
${CMAKE_CURRENT_LIST_DIR}/hostpolicy_context.h | ||
${CMAKE_CURRENT_LIST_DIR}/hostpolicy_init.h | ||
${CMAKE_CURRENT_LIST_DIR}/../hostpolicy.h | ||
${CMAKE_CURRENT_LIST_DIR}/../corehost_context_contract.h | ||
${CMAKE_CURRENT_LIST_DIR}/../bundle/dir_utils.h | ||
${CMAKE_CURRENT_LIST_DIR}/../bundle/extractor.h | ||
${CMAKE_CURRENT_LIST_DIR}/../bundle/file_entry.h | ||
${CMAKE_CURRENT_LIST_DIR}/../bundle/manifest.h | ||
${CMAKE_CURRENT_LIST_DIR}/../bundle/runner.h | ||
${CMAKE_CURRENT_LIST_DIR}/../../coreclr_resolver.h | ||
) | ||
|
Oops, something went wrong.