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})
# 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()