Skip to content

Commit

Permalink
load target fallback (#74)
Browse files Browse the repository at this point in the history
  • Loading branch information
TingDaoK authored Aug 16, 2022
1 parent 4028941 commit a61ed88
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions cmake/aws-c-iot-config.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,21 @@ find_dependency(aws-c-io)
find_dependency(aws-c-mqtt)
find_dependency(aws-c-common)

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 a61ed88

Please sign in to comment.