mirror of
https://github.com/reactos/reactos.git
synced 2024-11-27 05:23:33 +08: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
@ -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 New Issue
Block a user