mirror of
https://github.com/raysan5/raylib.git
synced 2026-01-18 13:41:26 +01:00
This commit is contained in:
@ -1,6 +1,18 @@
|
||||
cmake_minimum_required(VERSION 3.0)
|
||||
project(raylib)
|
||||
|
||||
# Avoid excessive expansion of variables in conditionals. In particular, if
|
||||
# "PLATFORM" is "DRM" than:
|
||||
#
|
||||
# if (${PLATFORM} MATCHES "DRM")
|
||||
#
|
||||
# may expand e.g to:
|
||||
#
|
||||
# if (/usr/lib/aarch64-linux-gnu/libdrm.so MATCHES "DRM")
|
||||
#
|
||||
# See https://cmake.org/cmake/help/latest/policy/CMP0054.html
|
||||
cmake_policy(SET CMP0054 NEW)
|
||||
|
||||
# Directory for easier includes
|
||||
# Anywhere you see include(...) you can check <root>/cmake for that file
|
||||
set(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake)
|
||||
|
||||
Reference in New Issue
Block a user