-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
79 lines (64 loc) · 4.01 KB
/
CMakeLists.txt
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# Flow
# Copyright 2023 Akamai Technologies, Inc.
#
# Licensed under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in
# compliance with the License. You may obtain a copy
# of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in
# writing, software distributed under the License is
# distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
# CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing
# permissions and limitations under the License.
cmake_minimum_required(VERSION 3.26.3) # See FlowLikeCodeGenerate.cmake for details.
# See this guy; it'll explain inside. It mandates the following procedure and documents details.
set(CODE_GEN_CMAKE_SCRIPT "tools/cmake/FlowLikeCodeGenerate.cmake")
# It also explains this guy.
set(PROJECT_ROOT_CMAKE_SCRIPT "tools/cmake/FlowLikeProject.cmake")
set(PROJ "flow")
message(CHECK_START "(Project [${PROJ}] root CMake script executing.)")
list(APPEND CMAKE_MESSAGE_INDENT "- ")
set(PROJ_CAMEL "Flow")
set(PROJ_HUMAN "Flow")
set(OS_SUPPORT_MSG "Only Linux is supported for now. For Flow: macOS/BSD support might not "
"require any coding, just extra testing; Windows might require a little bit of coding too.")
# Subtext: The main reason Flow is being open-sourced (delightful though it is...!) is that the Flow-IPC
# project requires it; but getting that to work in macOS/BSD and Windows would require more actual coding due to
# certain nonportable techniques used in a few low-level spots. This information is technically irrelevant
# to Flow (the present project), but we include it here for your convenience, as Flow and Flow-IPC are often
# considered together as of this writing. (Nevertheless Flow is absolutely usable and useful by itself.)
include(${PROJECT_ROOT_CMAKE_SCRIPT}) # Determine $PROJ_VERSION, at least.
project(${PROJ_CAMEL} VERSION ${PROJ_VERSION} LANGUAGES CXX)
include(${CODE_GEN_CMAKE_SCRIPT})
# Last but not least... export those same guys, so dependents can use them! Natually dependents need *not* do the same;
# they should instead:
# find_package(Flow CONFIG REQUIRED)
# include("${Flow_DIR}/../../../share/flow/cmake/FlowLikeProject.cmake")
# project(${PROJ_CAMEL} VERSION ${PROJ_VERSION} LANGUAGES CXX)
# include("${Flow_DIR}/../../../share/flow/cmake/FlowLikeCodeGenerate.cmake")
message(STATUS "Install target: Exports FlowLikeCodeGenerate.cmake: utility for dependents' CMake scripts.")
message(STATUS "Install target: Exports FlowLikeProject.cmake: utility for dependents' CMake scripts.")
install(FILES ${CODE_GEN_CMAKE_SCRIPT} DESTINATION share/${PROJ}/cmake)
install(FILES ${PROJECT_ROOT_CMAKE_SCRIPT} DESTINATION share/${PROJ}/cmake)
# Tip: Most likely you are next interested in ./src/CMakeLists.txt and then perhaps ./test/{basic|suite}/CMakeLists.txt.
# Documentation generation.
# See this guy; it'll explain inside. It mandates the following procedure and documents details.
set(DOC_GEN_CMAKE_SCRIPT "tools/cmake/FlowLikeDocGenerate.cmake")
# As of this writing Flow has only reference documentation within the code (it is quite extensive though!).
# TODO: A Guided Manual (as can be seen in, e.g., Flow-IPC) would be nice. In that case DOC_INPUT would
# probably contain an added subdir with the Doxygen-only *.dox.txt files containing the manual;
# and if it contains figures we'd add a set(DOC_IMAGE_PATH ...) here for the location of the image assets.
set(DOC_INPUT src/flow)
set(DOC_EXCLUDE_PATTERNS "")
include(${DOC_GEN_CMAKE_SCRIPT})
# Last but not least... export that same guy, so dependents can use it! Natually dependents need *not* do the same;
# they should instead:
# include("${Flow_DIR}/../../../share/flow/cmake/FlowLikeDocGenerate.cmake")
message(STATUS "Install target: Exports FlowLikeDocGenerate.cmake: utility for dependents' CMake scripts.")
install(FILES ${DOC_GEN_CMAKE_SCRIPT} DESTINATION share/${PROJ}/cmake)
list(POP_BACK CMAKE_MESSAGE_INDENT)
message(CHECK_PASS "(Done, success.)")