Commit 108256a7 authored by Ruslan Baratov's avatar Ruslan Baratov

Remove useless 'project' commands

'project' declare independent block of CMake code. If block is not designed
to be used stand-alone it make no sense to declare 'project'
parent 42b0aec4
cmake_minimum_required(VERSION 3.1.3) cmake_minimum_required(VERSION 3.1.3)
project(examples)
# The examples need a few additional dependencies (e.g. boost filesystem and OpenCV highgui): # The examples need a few additional dependencies (e.g. boost filesystem and OpenCV highgui):
......
cmake_minimum_required(VERSION 3.7.0) cmake_minimum_required(VERSION 3.7.0)
project(matlab-bindings)
# If Matlab_ROOT_DIR is set, the Matlab at that location is used. # If Matlab_ROOT_DIR is set, the Matlab at that location is used.
find_package(Matlab COMPONENTS MX_LIBRARY REQUIRED) find_package(Matlab COMPONENTS MX_LIBRARY REQUIRED)
......
cmake_minimum_required(VERSION 3.1.3) cmake_minimum_required(VERSION 3.1.3)
project(python-bindings)
# The python bindings may need a few additional dependencies (e.g. boost filesystem and OpenCV), which are # The python bindings may need a few additional dependencies (e.g. boost filesystem and OpenCV), which are
# included below - at some point it should be checked if they are really needed. # included below - at some point it should be checked if they are really needed.
......
cmake_minimum_required(VERSION 3.1.3) cmake_minimum_required(VERSION 3.1.3)
project(utils)
# The utils need a few additional dependencies (e.g. boost filesystem and OpenCV highgui): # The utils need a few additional dependencies (e.g. boost filesystem and OpenCV highgui):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment