mirror of
https://github.com/hyprwm/Hyprland
synced 2024-12-26 07:29:49 +01:00
CMake: print pch messages based on var
This commit is contained in:
parent
8579066c7a
commit
cb7f9140da
1 changed files with 7 additions and 4 deletions
|
@ -216,10 +216,13 @@ set(CPACK_PROJECT_NAME ${PROJECT_NAME})
|
||||||
set(CPACK_PROJECT_VERSION ${PROJECT_VERSION})
|
set(CPACK_PROJECT_VERSION ${PROJECT_VERSION})
|
||||||
include(CPack)
|
include(CPack)
|
||||||
|
|
||||||
|
if(CMAKE_DISABLE_PRECOMPILE_HEADERS)
|
||||||
|
message(STATUS "Not using precompiled headers")
|
||||||
|
else()
|
||||||
message(STATUS "Setting precompiled headers")
|
message(STATUS "Setting precompiled headers")
|
||||||
|
|
||||||
target_precompile_headers(Hyprland PRIVATE
|
target_precompile_headers(Hyprland PRIVATE
|
||||||
$<$<COMPILE_LANGUAGE:CXX>:src/pch/pch.hpp>)
|
$<$<COMPILE_LANGUAGE:CXX>:src/pch/pch.hpp>)
|
||||||
|
endif()
|
||||||
|
|
||||||
message(STATUS "Setting link libraries")
|
message(STATUS "Setting link libraries")
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue