Skip to content

Commit

Permalink
Fix for paths with blanks
Browse files Browse the repository at this point in the history
  • Loading branch information
dorian3d committed Jul 18, 2017
1 parent a89578d commit 70089a3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/DLib.cmake.in
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
FIND_LIBRARY(DLib_LIBRARY DLib
PATHS @CMAKE_INSTALL_PREFIX@/lib
PATHS "@CMAKE_INSTALL_PREFIX@/lib"
)
FIND_PATH(DLib_INCLUDE_DIR DLibConfig.cmake
PATHS @CMAKE_INSTALL_PREFIX@/include/@PROJECT_NAME@
PATHS "@CMAKE_INSTALL_PREFIX@/include/@PROJECT_NAME@"
)
LIST(APPEND DLib_INCLUDE_DIR
${DLib_INCLUDE_DIR}/../ ${DLib_INCLUDE_DIR}/../DUtils
Expand Down

0 comments on commit 70089a3

Please sign in to comment.