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

github.com/Ultimaker/CuraEngine.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
authorGhostkeeper <rubend@tutanota.com>2019-07-19 10:10:30 +0300
committerGhostkeeper <rubend@tutanota.com>2019-07-19 10:10:30 +0300
commita009f454d70571cff0ed5326212a80de08aa3f2c (patch)
tree135bb9af8522772a8e65095bedeb0df22334c2f8 /cmake
parentcd3fa7419b027426630cdc03ca97ee80a529be09 (diff)
Fix finding Stb when installed to program files
Diffstat (limited to 'cmake')
-rw-r--r--cmake/FindStb.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/FindStb.cmake b/cmake/FindStb.cmake
index 742424038..35f55a90b 100644
--- a/cmake/FindStb.cmake
+++ b/cmake/FindStb.cmake
@@ -15,7 +15,7 @@ pkg_check_modules(PC_Stb QUIET Stb)
find_path(Stb_INCLUDE_DIRS stb/stb_image_resize.h #Search for something that is a little less prone to false positives than just stb.h.
HINTS ${PC_Stb_INCLUDEDIR} ${PC_Stb_INCLUDE_DIRS}
- PATHS "$ENV{PROGRAMFILES}/stb" "$ENV{PROGRAMW6432}/stb" "/usr/include"
+ PATHS "$ENV{PROGRAMFILES}" "$ENV{PROGRAMW6432}" "/usr/include"
PATH_SUFFIXES include/stb stb include
)