qt5base-lts/config.tests/precompile_header/CMakeLists.txt
Joerg Bornemann 95de422124 Fix the precompile_header configure test
This configure test always failed, and its result was never used.

Pick-to: 6.2
Change-Id: I5112464b247efb5327ef5c23c96ef27168c11afc
Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
2021-06-19 01:08:23 +02:00

6 lines
186 B
CMake

cmake_minimum_required(VERSION 3.15.0)
project(precompile_header LANGUAGES CXX)
add_executable(precompile_header main.cpp)
target_precompile_headers(precompile_header PRIVATE header.h)