From 55105baa2533e48ae5935042fd1f5202d785593f Mon Sep 17 00:00:00 2001 From: James Turner Date: Wed, 28 Mar 2012 09:37:58 +0100 Subject: [PATCH] PUI doesn't use SSG (and never has). Ooops. --- CMakeModules/FindPLIB.cmake | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeModules/FindPLIB.cmake b/CMakeModules/FindPLIB.cmake index 685c54d63..da5463612 100644 --- a/CMakeModules/FindPLIB.cmake +++ b/CMakeModules/FindPLIB.cmake @@ -125,7 +125,7 @@ if(${PLIB_LIBRARIES} STREQUAL "PLIB_LIBRARIES-NOTFOUND") set(PLIB_LIBRARIES "") # clear value # based on the contents of deps, add other required PLIB -# static library dependencies. Eg PUI requires SSG and FNT +# static library dependencies. Eg PUI requires FNT set(outDeps ${PLIB_FIND_COMPONENTS}) foreach(c ${PLIB_FIND_COMPONENTS}) @@ -133,9 +133,9 @@ if(${PLIB_LIBRARIES} STREQUAL "PLIB_LIBRARIES-NOTFOUND") # handle MSVC confusion over pu/pui naming, by removing # 'pu' and then adding it back list(REMOVE_ITEM outDeps "pu") - list(APPEND outDeps ${PUNAME} "fnt" "ssg" "sg") + list(APPEND outDeps ${PUNAME} "fnt" "sg") elseif (${c} STREQUAL "puaux") - list(APPEND outDeps ${PUNAME} "fnt" "ssg" "sg") + list(APPEND outDeps ${PUNAME} "fnt" "sg") elseif (${c} STREQUAL "ssg") list(APPEND outDeps "sg") endif() -- 2.39.5