".github/vscode:/vscode.git/clone" did not exist on "c7e6d09068a88e752b43eed0f2c4e56ace6b7005"
CMakeLists.txt 522 Bytes
Newer Older
1
cmake_minimum_required(VERSION 2.8.12)
2

3
4
5
6
7
8
9
10
11
12
13


get_directory_property(has_parent PARENT_DIRECTORY)
if(NOT has_parent)
   # Set this so that the dlib subfolder will build both a static and shared
   # library, since the only reason to build this CMakeLists.txt by itself is
   # if you want to install dlib.  It should be noted however that installing
   # dlib is not necessary.  A simpler approach is to use it the way shown in
   # examples/CMakeLists.txt 
   set(DLIB_IN_PROJECT_BUILD false)
endif()
14

15
add_subdirectory(dlib)