summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorKevin Funk <kevin.funk@kdab.com>2019-06-04 15:28:59 +0200
committerKevin Funk <kevin.funk@kdab.com>2019-06-04 15:34:33 +0000
commit75bb0b6cd12959618f91e11a8f69b1a0af04bb41 (patch)
treefed177a965d01fda845b0cb776457e5a9850c1af /util
parent772f5dbf1c30b9b0a26ac48a8ae1e1d5cf58b130 (diff)
pro2cmake: Add PUBLIC to target_include_directories
Change-Id: Ie4e882a5713022bfaec7182172be69616ff8b91c Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
Diffstat (limited to 'util')
-rwxr-xr-xutil/cmake/pro2cmake.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/cmake/pro2cmake.py b/util/cmake/pro2cmake.py
index 4b2b8dc5c7..072fd4a08b 100755
--- a/util/cmake/pro2cmake.py
+++ b/util/cmake/pro2cmake.py
@@ -1704,7 +1704,7 @@ def write_example(cm_fh: typing.IO[str], scope: Scope,
cm_fh.write(')\n')
- write_include_paths(cm_fh, scope, 'target_include_directories({}'.format(binary_name),
+ write_include_paths(cm_fh, scope, 'target_include_directories({} PUBLIC'.format(binary_name),
indent=0, footer=')')
write_defines(cm_fh, scope, 'target_compile_definitions({} PUBLIC'.format(binary_name),
indent=0, footer=')')