summaryrefslogtreecommitdiffstats
path: root/src/repparser/CMakeLists.txt
blob: d3e6800f6392ba2acd83271aaa8d6fee7a384d3c (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
# Copyright (C) 2022 The Qt Company Ltd.
# SPDX-License-Identifier: BSD-3-Clause


#####################################################################
## RepParser Module:
#####################################################################

qt_internal_add_module(RepParser
    HEADER_MODULE
    NO_PRIVATE_MODULE
    PUBLIC_LIBRARIES
        Qt::Core
    NO_GENERATE_CPP_EXPORTS
)

qt_internal_module_info(module RepParser)
qt_path_join(parser_install_dir "${QT_INSTALL_DIR}" "${INSTALL_INCLUDEDIR}" "${module}")

qt_copy_or_install(
    FILES
        "${CMAKE_CURRENT_SOURCE_DIR}/parser.g"
        "${CMAKE_CURRENT_SOURCE_DIR}/qregexparser.h"
    DESTINATION
        "${parser_install_dir}"
)