Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Montagne <bastien@blender.org>2021-03-24 19:01:19 +0300
committerBastien Montagne <bastien@blender.org>2021-03-24 19:01:19 +0300
commitd0d0d9d7c659acba779dced73f003348dc173a9b (patch)
tree2287389a75b28a002d16a89c36ed13781681c55d /source/blender/io/gpencil
parenta6664383c6ef21ecaf03f0867ccef76732e12bf3 (diff)
Fix broken compilation after recent GPencil commit.
rBa8a92cd15a52 was adding external libraries includes to `INC`, which is reserved to internal project includes. `INC` does not allow duplicates, and when using system libs both PugiXML and Haru headers are under the same path.
Diffstat (limited to 'source/blender/io/gpencil')
-rw-r--r--source/blender/io/gpencil/CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/io/gpencil/CMakeLists.txt b/source/blender/io/gpencil/CMakeLists.txt
index f394075cb9a..11c9affbe5a 100644
--- a/source/blender/io/gpencil/CMakeLists.txt
+++ b/source/blender/io/gpencil/CMakeLists.txt
@@ -68,7 +68,7 @@ if(WITH_PUGIXML)
intern/gpencil_io_export_svg.h
intern/gpencil_io_export_svg.cc
)
- list(APPEND INC
+ list(APPEND INC_SYS
${PUGIXML_INCLUDE_DIR}
)
list(APPEND LIB
@@ -82,7 +82,7 @@ if(WITH_HARU)
intern/gpencil_io_export_pdf.h
intern/gpencil_io_export_pdf.cc
)
- list(APPEND INC
+ list(APPEND INC_SYS
${HARU_INCLUDE_DIRS}
)
list(APPEND LIB