0da123d67b
Needed for subsequent change that will check and error out if the version is lower than 3.16. We do that to ensure all policies introduced by CMake up to version 3.16 have their behavior set to NEW. Pick-to: 6.2 Task-number: QTBUG-95018 Change-Id: Ieaf82c10987dd797d86a3fd4a986a67e72de486a Reviewed-by: Kai Koehne <kai.koehne@qt.io>
6 lines
184 B
CMake
6 lines
184 B
CMake
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)
|