blob: 9a449a5280e5989e1abb003d6438f98a2c7847f1 (
plain)
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
|
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you 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
#
# http://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.
set(find_package_args)
if(RapidJSONAlt_FIND_VERSION)
list(APPEND find_package_args ${RapidJSONAlt_FIND_VERSION})
endif()
if(RapidJSONAlt_FIND_QUIETLY)
list(APPEND find_package_args QUIET)
endif()
find_package(RapidJSON ${find_package_args})
if(RapidJSON_FOUND)
set(RapidJSONAlt_FOUND TRUE)
set(RAPIDJSON_INCLUDE_DIR ${RAPIDJSON_INCLUDE_DIRS})
return()
endif()
if(RapidJSON_ROOT)
find_path(RAPIDJSON_INCLUDE_DIR
NAMES rapidjson/rapidjson.h
PATHS ${RapidJSON_ROOT}
NO_DEFAULT_PATH
PATH_SUFFIXES "include")
else()
find_path(RAPIDJSON_INCLUDE_DIR
NAMES rapidjson/rapidjson.h
PATH_SUFFIXES "include")
endif()
if(RAPIDJSON_INCLUDE_DIR)
file(READ "${RAPIDJSON_INCLUDE_DIR}/rapidjson/rapidjson.h" RAPIDJSON_H_CONTENT)
string(REGEX MATCH "#define RAPIDJSON_MAJOR_VERSION ([0-9]+)"
RAPIDJSON_MAJOR_VERSION_DEFINITION "${RAPIDJSON_H_CONTENT}")
string(REGEX REPLACE "^.+ ([0-9]+)$" "\\1" RAPIDJSON_MAJOR_VERSION
"${RAPIDJSON_MAJOR_VERSION_DEFINITION}")
string(REGEX MATCH "#define RAPIDJSON_MINOR_VERSION ([0-9]+)"
RAPIDJSON_MINOR_VERSION_DEFINITION "${RAPIDJSON_H_CONTENT}")
string(REGEX REPLACE "^.+ ([0-9]+)$" "\\1" RAPIDJSON_MINOR_VERSION
"${RAPIDJSON_MINOR_VERSION_DEFINITION}")
string(REGEX MATCH "#define RAPIDJSON_PATCH_VERSION ([0-9]+)"
RAPIDJSON_PATCH_VERSION_DEFINITION "${RAPIDJSON_H_CONTENT}")
string(REGEX REPLACE "^.+ ([0-9]+)$" "\\1" RAPIDJSON_PATCH_VERSION
"${RAPIDJSON_PATCH_VERSION_DEFINITION}")
if("${RAPIDJSON_MAJOR_VERSION}" STREQUAL ""
OR "${RAPIDJSON_MINOR_VERSION}" STREQUAL ""
OR "${RAPIDJSON_PATCH_VERSION}" STREQUAL "")
set(RAPIDJSON_VERSION "0.0.0")
else()
set(RAPIDJSON_VERSION
"${RAPIDJSON_MAJOR_VERSION}.${RAPIDJSON_MINOR_VERSION}.${RAPIDJSON_PATCH_VERSION}"
)
endif()
endif()
find_package_handle_standard_args(
RapidJSONAlt
REQUIRED_VARS RAPIDJSON_INCLUDE_DIR
VERSION_VAR RAPIDJSON_VERSION)
|