mirror of
https://github.com/davisking/dlib.git
synced 2024-11-01 10:14:53 +08:00
Made top level cmake file not build a shared library if part of a subproject.
This commit is contained in:
parent
88d8b7c671
commit
bc37789144
@ -1,10 +1,15 @@
|
||||
cmake_minimum_required(VERSION 2.8.12)
|
||||
|
||||
# Set this so that the dlib subfolder will build both a static and shared
|
||||
# library, since the only reason to build this CMakeLists.txt 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)
|
||||
|
||||
|
||||
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()
|
||||
|
||||
add_subdirectory(dlib)
|
||||
|
Loading…
Reference in New Issue
Block a user