forked from dgiunchi/fervor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
GeneratefervorConfig.cmake
39 lines (27 loc) · 1.28 KB
/
GeneratefervorConfig.cmake
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#-----------------------------------------------------------------------------
# Settings shared between the build tree and install tree.
#-----------------------------------------------------------------------------
# Settings specific to the build tree.
# The "use" file.
SET(fervor_USE_FILE ${fervor_BINARY_DIR}/Usefervor.cmake)
# Determine the include directories needed.
SET(fervor_INCLUDE_DIRS_CONFIG
${fervor_SOURCE_DIR}
)
# Library directory.
SET(fervor_LIBRARY_DIRS_CONFIG ${CMAKE_LIBRARY_OUTPUT_DIRECTORY})
# Runtime library directory.
SET(fervor_RUNTIME_LIBRARY_DIRS_CONFIG ${CMAKE_RUNTIME_OUTPUT_DIRECTORY})
# Build configuration information.
SET(fervor_CONFIGURATION_TYPES_CONFIG ${CMAKE_CONFIGURATION_TYPES})
SET(fervor_BUILD_TYPE_CONFIG ${CMAKE_BUILD_TYPE})
#-----------------------------------------------------------------------------
# Configure fervorConfig.cmake for the build tree.
CONFIGURE_FILE(${fervor_SOURCE_DIR}/fervorConfig.cmake.in
${fervor_BINARY_DIR}/fervorConfig.cmake @ONLY IMMEDIATE)
#-----------------------------------------------------------------------------
# Settings specific to the install tree.
# TODO
#-----------------------------------------------------------------------------
# Configure fervorConfig.cmake for the install tree.
# TODO