File: CMakeLists.txt

package info (click to toggle)
qt6-httpserver 6.9.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,032 kB
  • sloc: cpp: 8,416; makefile: 20
file content (17 lines) | stat: -rw-r--r-- 387 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Copyright (C) 2022 The Qt Company Ltd.
# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

cmake_minimum_required(VERSION 3.16)
project(custom-converter LANGUAGES CXX)

find_package(Qt6 REQUIRED COMPONENTS HttpServer)

qt_standard_project_setup()

qt_add_executable(custom-converter
    main.cpp
)

target_link_libraries(custom-converter PRIVATE
    Qt6::HttpServer
)