mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
[CMAKE]
- We require automatic generation of phony targets for now. Set the corresponding CMake 3.3+ policy (CMP0058). CORE-12373 svn path=/trunk/; revision=73219
This commit is contained in:
parent
4eb205b6f5
commit
273a731496
1 changed files with 5 additions and 0 deletions
|
@ -16,6 +16,11 @@ if(POLICY CMP0051)
|
|||
cmake_policy(SET CMP0051 NEW)
|
||||
endif()
|
||||
|
||||
if(POLICY CMP0058)
|
||||
# Ninja requires custom command byproducts to be explicit
|
||||
cmake_policy(SET CMP0058 OLD)
|
||||
endif()
|
||||
|
||||
project(REACTOS)
|
||||
|
||||
# Versioning
|
||||
|
|
Loading…
Reference in a new issue