We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf0f29f commit ce488afCopy full SHA for ce488af
CMakeLists.txt
@@ -2,12 +2,12 @@
2
# Originally created for "roxlu build system" to compile libyuv on windows
3
# Run with -DUNIT_TEST=ON to build unit tests
4
5
-include(CheckCSourceCompiles)
6
-
+cmake_minimum_required( VERSION 3.16 )
7
project ( YUV C CXX ) # "C" is required even for C++ projects
8
-cmake_minimum_required( VERSION 3.5 )
9
option( UNIT_TEST "Built unit tests" OFF )
10
+include(CheckCSourceCompiles)
+
11
set ( ly_base_dir ${PROJECT_SOURCE_DIR} )
12
set ( ly_src_dir ${ly_base_dir}/source )
13
set ( ly_inc_dir ${ly_base_dir}/include )
0 commit comments