Skip to content

Commit 495dfe8

Browse files
authored
Cmake modules (#864)
1 parent 669bd30 commit 495dfe8

12 files changed

+16
-39
lines changed

CMakeLists.txt

+5-28
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,17 @@
1-
cmake_minimum_required(VERSION 3.9)
1+
cmake_minimum_required(VERSION 3.9...3.31)
22

33
project(aws-crt-jni C)
44
option(BUILD_DEPS "Builds aws common runtime dependencies as part of build" ON)
55
option(CRT_FIPS "Whether to build aws-lc with FIPS compliance" OFF)
66

7-
if (POLICY CMP0077)
8-
cmake_policy(SET CMP0077 NEW) # Enable options to get their values from normal variables
9-
endif()
10-
11-
if (DEFINED CMAKE_PREFIX_PATH)
12-
file(TO_CMAKE_PATH "${CMAKE_PREFIX_PATH}" CMAKE_PREFIX_PATH)
13-
endif()
14-
15-
if (DEFINED CMAKE_INSTALL_PREFIX)
16-
file(TO_CMAKE_PATH "${CMAKE_INSTALL_PREFIX}" CMAKE_INSTALL_PREFIX)
17-
endif()
18-
19-
if (UNIX AND NOT APPLE)
20-
include(GNUInstallDirs)
21-
elseif(NOT DEFINED CMAKE_INSTALL_LIBDIR)
22-
set(CMAKE_INSTALL_LIBDIR "lib")
23-
endif()
24-
25-
if (${CMAKE_INSTALL_LIBDIR} STREQUAL "lib64")
26-
set(FIND_LIBRARY_USE_LIB64_PATHS true)
27-
endif()
7+
include(GNUInstallDirs)
288

299
if (NOT WIN32 AND NOT CMAKE_BUILD_TYPE)
3010
set(CMAKE_BUILD_TYPE "RelWithDebInfo")
3111
endif()
3212

3313
message(STATUS "CMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE}")
3414

35-
# This is required in order to append /lib/cmake to each element in CMAKE_PREFIX_PATH
36-
set(AWS_MODULE_DIR "/${CMAKE_INSTALL_LIBDIR}/cmake")
37-
string(REPLACE ";" "${AWS_MODULE_DIR};" AWS_MODULE_PATH "${CMAKE_PREFIX_PATH}${AWS_MODULE_DIR}")
38-
# Append that generated list to the module search path
39-
list(APPEND CMAKE_MODULE_PATH ${AWS_MODULE_PATH})
40-
4115
# Local CMake scripts
4216
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/cmake")
4317

@@ -111,6 +85,9 @@ if (BUILD_DEPS)
11185
add_subdirectory(crt/aws-c-event-stream)
11286
add_subdirectory(crt/aws-c-s3)
11387
else()
88+
# this is required so we can use aws-c-common's CMake modules
89+
find_package(aws-c-common REQUIRED)
90+
11491
include(AwsFindPackage)
11592
include(AwsCFlags)
11693
set(IN_SOURCE_BUILD OFF)

crt/aws-c-sdkutils

0 commit comments

Comments
 (0)