9 lines
320 B
CMake
9 lines
320 B
CMake
# Copyright (C) 2022 The Qt Company Ltd.
|
|
# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
|
|
|
cmake_minimum_required(VERSION 3.16)
|
|
project(precompile_header LANGUAGES CXX)
|
|
|
|
add_executable(precompile_header main.cpp)
|
|
target_precompile_headers(precompile_header PRIVATE header.h)
|