From 8438647705bb6a00632db2998f9c136cabf995ec Mon Sep 17 00:00:00 2001 From: "Hendrik v. Raven" Date: Wed, 26 Jul 2017 13:12:54 +0200 Subject: [PATCH] add a project definition the project definition is used by cmake to fill the subfolder for ${CMAKE_INSTALL_DOCDIR}. --- CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 921e09fd0a..d6a81bfcd4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,6 +4,8 @@ if (CMAKE_BINARY_DIR STREQUAL CMAKE_SOURCE_DIR) message(FATAL_ERROR "Building in-source is not supported! Create a build dir and remove ${CMAKE_SOURCE_DIR}/CMakeCache.txt") endif() +project(openrct2) + include(FindPkgConfig) include(CheckCCompilerFlag) include(CheckCXXCompilerFlag)