From c4b7d175163f0365110b37834c58be3cf2bd1ccf Mon Sep 17 00:00:00 2001 From: Ahmad Fatoum Date: Sun, 7 Oct 2018 19:35:31 +0200 Subject: [PATCH] CMake: report what kind of libraries will be built --- src/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index a8d8635f2..9b745cfee 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -150,6 +150,7 @@ include(LibraryPathToLinkerFlags) library_path_to_linker_flags(__PKG_CONFIG_LIBS_PRIVATE "${LIBS_PRIVATE}") if(STATIC) + MESSAGE(STATUS "Building raylib static library") if(${PLATFORM} MATCHES "Web") set(CMAKE_STATIC_LIBRARY_SUFFIX ".bc") endif() @@ -186,6 +187,7 @@ endif(STATIC) if(SHARED) + MESSAGE(STATUS "Building raylib shared library") add_library(raylib SHARED ${sources}) target_compile_definitions(raylib