From da53353cda33f1f7b29b5e2594af74be6c22ff72 Mon Sep 17 00:00:00 2001 From: Darryl Pogue Date: Wed, 26 Oct 2011 20:52:23 -0700 Subject: [PATCH] Turns out Windows needs Rpcrt4.lib for UUIDs. --- Sources/Plasma/NucleusLib/pnUUID/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/Sources/Plasma/NucleusLib/pnUUID/CMakeLists.txt b/Sources/Plasma/NucleusLib/pnUUID/CMakeLists.txt index 3a183b2a..e1d435c7 100644 --- a/Sources/Plasma/NucleusLib/pnUUID/CMakeLists.txt +++ b/Sources/Plasma/NucleusLib/pnUUID/CMakeLists.txt @@ -20,6 +20,7 @@ add_library(pnUUID STATIC ${pnUUID_SOURCES} ${pnUUID_HEADERS}) target_link_libraries(pnUUID pnFactory) if(WIN32) target_link_libraries(pnUUID pnUtils) + target_link_libraries(pnUUID Rpcrt4) else(WIN32) target_link_libraries(pnUUID uuid) endif(WIN32)