Skip to content

Commit

Permalink
fallback for target load (#387)
Browse files Browse the repository at this point in the history
  • Loading branch information
TingDaoK committed Aug 16, 2022
1 parent eb9a90a commit f81ee94
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions cmake/aws-c-http-config.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,21 @@ include(CMakeFindDependencyMacro)
find_dependency(aws-c-io)
find_dependency(aws-c-compression)

macro(aws_load_targets type)
include(${CMAKE_CURRENT_LIST_DIR}/${type}/@PROJECT_NAME@-targets.cmake)
endmacro()

# try to load the lib follow BUILD_SHARED_LIBS. Fall back if not exist.
if (BUILD_SHARED_LIBS)
include(${CMAKE_CURRENT_LIST_DIR}/shared/@PROJECT_NAME@-targets.cmake)
if (EXISTS "${CMAKE_CURRENT_LIST_DIR}/shared")
aws_load_targets(shared)
else()
aws_load_targets(static)
endif()
else()
include(${CMAKE_CURRENT_LIST_DIR}/static/@PROJECT_NAME@-targets.cmake)
if (EXISTS "${CMAKE_CURRENT_LIST_DIR}/static")
aws_load_targets(static)
else()
aws_load_targets(shared)
endif()
endif()

0 comments on commit f81ee94

Please sign in to comment.