From 45ee5878397822c41b9109d0e3bc2d635c8c8634 Mon Sep 17 00:00:00 2001 From: Luca Sas Date: Thu, 1 Oct 2020 19:17:58 +0100 Subject: Updated to raylib 3.0 --- libs/raylib/src/CMakeLists.txt | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'libs/raylib/src/CMakeLists.txt') diff --git a/libs/raylib/src/CMakeLists.txt b/libs/raylib/src/CMakeLists.txt index c1d4a41..2cee1b6 100644 --- a/libs/raylib/src/CMakeLists.txt +++ b/libs/raylib/src/CMakeLists.txt @@ -3,8 +3,8 @@ project(raylib C) include(GNUInstallDirs) list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/../cmake") -set(PROJECT_VERSION 2.5.0) -set(API_VERSION 251) +set(PROJECT_VERSION 3.0.0) +set(API_VERSION 301) include("CMakeOptions.txt") include(BuildType) @@ -263,6 +263,11 @@ file(COPY "raymath.h" DESTINATION ".") file(COPY "raudio.h" DESTINATION ".") # Print the flags for the user +if (DEFINED CMAKE_BUILD_TYPE) + message(STATUS "Generated build type: ${CMAKE_BUILD_TYPE}") +else() + message(STATUS "Generated config types: ${CMAKE_CONFIGURATION_TYPES}") +endif() message(STATUS "Compiling with the flags:") message(STATUS " PLATFORM=" ${PLATFORM_CPP}) message(STATUS " GRAPHICS=" ${GRAPHICS}) -- cgit v1.2.3