mirror of
https://github.com/morgan9e/UxPlay
synced 2026-04-14 00:04:13 +09:00
require cmake>=3.5 to silence deprecation warning
This commit is contained in:
@@ -1,4 +1,8 @@
|
||||
cmake_minimum_required( VERSION 3.4.3 )
|
||||
if ( APPLE )
|
||||
cmake_minimum_required( VERSION 3.13 )
|
||||
else ()
|
||||
cmake_minimum_required( VERSION 3.5 )
|
||||
endif ()
|
||||
|
||||
project( uxplay )
|
||||
|
||||
|
||||
@@ -239,7 +239,7 @@ libraries installed. Debian-based systems provide a package
|
||||
“build-essential” for use in compiling software. You also need
|
||||
pkg-config: if it is not found by “<code>which pkg-config</code>”,
|
||||
install pkg-config or its work-alike replacement pkgconf. Also make sure
|
||||
that cmake>=3.4.1 is installed:
|
||||
that cmake>=3.5 is installed:
|
||||
“<code>sudo apt-get install cmake</code>” (add
|
||||
<code>build-essential</code> and <code>pkg-config</code> (or
|
||||
<code>pkgconf</code>) to this if needed).</p>
|
||||
|
||||
@@ -191,7 +191,7 @@ You need a C/C++ compiler (e.g. g++) with the standard development libraries
|
||||
installed. Debian-based systems provide a package "build-essential" for use
|
||||
in compiling software. You also need pkg-config: if it is not found
|
||||
by "`which pkg-config`", install pkg-config or its work-alike replacement
|
||||
pkgconf. Also make sure that cmake>=3.4.1 is installed:
|
||||
pkgconf. Also make sure that cmake>=3.5 is installed:
|
||||
"`sudo apt-get install cmake`" (add ``build-essential`` and `pkg-config`
|
||||
(or ``pkgconf``) to this if needed).
|
||||
|
||||
|
||||
@@ -240,7 +240,7 @@ libraries installed. Debian-based systems provide a package
|
||||
"build-essential" for use in compiling software. You also need
|
||||
pkg-config: if it is not found by "`which pkg-config`", install
|
||||
pkg-config or its work-alike replacement pkgconf. Also make sure that
|
||||
cmake\>=3.4.1 is installed: "`sudo apt-get install cmake`" (add
|
||||
cmake\>=3.5 is installed: "`sudo apt-get install cmake`" (add
|
||||
`build-essential` and `pkg-config` (or `pkgconf`) to this if needed).
|
||||
|
||||
Make sure that your distribution provides OpenSSL 1.1.1 or later, and
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
cmake_minimum_required(VERSION 3.4.1)
|
||||
cmake_minimum_required(VERSION 3.5)
|
||||
include_directories( playfair llhttp )
|
||||
|
||||
message( STATUS "*** CFLAGS \"" ${CMAKE_C_FLAGS} "\" from build environment will be postpended to CMAKE_CFLAGS" )
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
cmake_minimum_required(VERSION 3.4.1)
|
||||
cmake_minimum_required(VERSION 3.5)
|
||||
aux_source_directory(. llhttp_src)
|
||||
set(DIR_SRCS ${llhttp_src})
|
||||
include_directories(.)
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
cmake_minimum_required(VERSION 3.4.1)
|
||||
cmake_minimum_required(VERSION 3.5)
|
||||
aux_source_directory(. playfair_src)
|
||||
set(DIR_SRCS ${playfair_src})
|
||||
include_directories(.)
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
cmake_minimum_required(VERSION 3.4.1)
|
||||
cmake_minimum_required(VERSION 3.5)
|
||||
|
||||
if (APPLE )
|
||||
set( ENV{PKG_CONFIG_PATH} "/Library/FrameWorks/GStreamer.framework/Libraries/pkgconfig" ) # GStreamer.framework, preferred
|
||||
|
||||
Reference in New Issue
Block a user