mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2024-11-23 12:07:03 +08:00
9 lines
266 B
CMake
9 lines
266 B
CMake
|
# Copyright (C) 2022 The Qt Company Ltd.
|
||
|
# SPDX-License-Identifier: BSD-3-Clause
|
||
|
|
||
|
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)
|