blob: e416c4d908596aaf24b6b203405fa5063b0b219c (
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
|
# Copyright (C) 2022 The Qt Company Ltd.
# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
cmake_minimum_required(VERSION 3.16)
project(sslserver LANGUAGES CXX)
if (ANDROID)
message(FATAL_ERROR "This project cannot be built on Android.")
endif()
set(CMAKE_INCLUDE_CURRENT_DIR ON)
find_package(Qt6 REQUIRED COMPONENTS Core RemoteObjects)
qt_standard_project_setup()
qt_add_executable(sslserver
main.cpp
timemodel.cpp timemodel.h
)
set_target_properties(sslserver PROPERTIES
WIN32_EXECUTABLE FALSE
MACOSX_BUNDLE FALSE
)
target_link_libraries(sslserver PRIVATE
Qt::Core
Qt::RemoteObjects
)
# Resources:
set(cert_resource_files
"cert/rootCA.key"
"cert/rootCA.pem"
"cert/rootCA.srl"
"cert/server.crt"
"cert/server.key"
)
qt6_add_resources(sslserver "cert"
PREFIX
"/sslcert"
BASE
"cert"
FILES
${cert_resource_files}
)
qt6_add_repc_sources(sslserver
../../timemodel.rep
)
|