Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@
# LICENSE file in the root directory of this source tree.

cmake_minimum_required(VERSION 3.10)

# Support: HHVM OSS
# HHVM needs to supply overrides for some module search paths
# to use vendored equivalents of system dependencies.
if(POLICY CMP0074)
cmake_policy(SET CMP0074 NEW)
endif()

include(CheckCXXCompilerFlag)

project(
Expand Down
Loading