Commit 12955ba2 authored by Clement Guedez's avatar Clement Guedez Committed by jeremad

don't check external deps if we use linux sys pkg

parent f1d60797
...@@ -212,7 +212,7 @@ endif(NOT CMAKE_EXTERNAL_DEPS) ...@@ -212,7 +212,7 @@ endif(NOT CMAKE_EXTERNAL_DEPS)
set(CMAKE_EXTERNAL_LIB "${CMAKE_EXTERNAL_DEPS}/lib") set(CMAKE_EXTERNAL_LIB "${CMAKE_EXTERNAL_DEPS}/lib")
set(CMAKE_EXTERNAL_INCLUDE "${CMAKE_EXTERNAL_DEPS}/include") set(CMAKE_EXTERNAL_INCLUDE "${CMAKE_EXTERNAL_DEPS}/include")
if(NOT EXISTS ${CMAKE_EXTERNAL_DEPS} AND NOT APPLE_MACPORTS) if(NOT EXISTS ${CMAKE_EXTERNAL_DEPS} AND NOT APPLE_MACPORTS AND NOT LINUX_PKG)
message(FATAL_ERROR "external_deps folder not found and no system package manager set") message(FATAL_ERROR "external_deps folder not found and no system package manager set")
endif() endif()
......
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