From adeb30c436200966da9086f2a7f7bf7b842796f9 Mon Sep 17 00:00:00 2001 From: Pavel Karelin Date: Wed, 13 Dec 2017 21:45:51 +0300 Subject: [PATCH] Fix build for QBS 1.10 --- yaml.qbs | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/yaml.qbs b/yaml.qbs index be86a75..e768147 100644 --- a/yaml.qbs +++ b/yaml.qbs @@ -20,9 +20,8 @@ Product { "-Wextra", "-Wno-unused-parameter", ] - cpp.systemIncludePaths: [ - "include", - ] + cpp.includePaths: ["include"] + files: [ "include/yaml-cpp/*.h", "include/yaml-cpp/contrib/*.h", @@ -33,6 +32,6 @@ Product { ] Export { Depends { name: "cpp" } - cpp.systemIncludePaths: product.cpp.systemIncludePaths + cpp.systemIncludePaths: ["include"] } }