From 3af75438fd317179f68fd9517a312b94748071b1 Mon Sep 17 00:00:00 2001 From: Mark Charlebois Date: Sat, 10 Oct 2015 01:47:17 -0700 Subject: [PATCH] Create external/Install/{lib|include} These files are expected to exist for current cmake rules and cmake will warn if they do not exist. Signed-off-by: Mark Charlebois --- CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index b6faa2448b..948959ca32 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -286,6 +286,9 @@ set_property(DIRECTORY PROPERTY EP_BASE ${ep_base}) # add external project install folders to build link_directories(${ep_base}/Install/lib) include_directories(${ep_base}/Install/include) +# add the directories so cmake won't warn +execute_process(COMMAND cmake -E make_directory ${ep_base}/Install/lib) +execute_process(COMMAND cmake -E make_directory ${ep_base}/Install/include) #============================================================================= # subdirectories