-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathLIBAWSConfig.cmake.in
More file actions
22 lines (18 loc) · 848 Bytes
/
LIBAWSConfig.cmake.in
File metadata and controls
22 lines (18 loc) · 848 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Tell the user project where to find our headers and libraries
SET(LIBAWS_INCLUDE_DIRS "${CMAKE_SOURCE_DIR}/include"
"${CMAKE_BINARY_DIR}/include"
"${CMAKE_SOURCE_DIR}/src"
"${CMAKE_BINARY_DIR}/src"
)
SET(LIBAWS_LIBRARY_DIRS "${CMAKE_BINARY_DIR}/src"
)
SET(LIBAWS_DIR "${CMAKE_BINARY_DIR}")
SET(LIBAWS_API "${CMAKE_BINARY_DIR}/include"
"${CMAKE_SOURCE_DIR}/include"
)
# Tell the user project where to find our build settings and library dependencies
SET(LIBAWS_BUILD_SETTINGS_FILE "${CMAKE_BINARY_DIR}/LIBAWSBuildSettings.cmake")
INCLUDE("${CMAKE_BINARY_DIR}/LIBAWSDepends.cmake")
# Tell the user project where to find the "USE" file.
# This file uses the above settings to configure the user project
SET(LIBAWS_USE_FILE "${CMAKE_SOURCE_DIR}/LIBAWSUse.cmake")