Skip to content

Commit

Permalink
Updated DP cmake script to DP dev version
Browse files Browse the repository at this point in the history
  • Loading branch information
WolverinDEV committed Mar 25, 2020
1 parent 2420535 commit 8c26435
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions cmake/FindDataPipes.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ function(find_datapipes)

if (NOT TARGET DataPipes::core::static)
find_library(STATIC_CORE_LIBRARY
NAMES DataPipes.lib libDataPipes.a
NAMES DataPipes-Core-Static.lib libDataPipes-Core-Static.a
HINTS ${DataPipes_ROOT_DIR} ${DataPipes_ROOT_DIR}/lib
)

Expand All @@ -47,7 +47,7 @@ function(find_datapipes)

if (NOT TARGET DataPipes::core::shared)
find_library(SHARED_CORE_LIBRARY
NAMES DataPipes.dll libDataPipes.so
NAMES DataPipes-Core-Shared.dll libDataPipes-Core-Shared.so
HINTS ${DataPipes_ROOT_DIR} ${DataPipes_ROOT_DIR}/lib
)

Expand All @@ -62,7 +62,7 @@ function(find_datapipes)

if (NOT TARGET DataPipes::rtc::static)
find_library(STATIC_RTC_LIBRARY
NAMES DataPipes-RTC.lib libDataPipes-RTC.a
NAMES DataPipes-Rtc-Static.lib libDataPipes-Rtc-Static.a
HINTS ${DataPipes_ROOT_DIR} ${DataPipes_ROOT_DIR}/lib
)

Expand All @@ -77,7 +77,7 @@ function(find_datapipes)

if (NOT TARGET DataPipes::rtc::shared)
find_library(SHARED_RTC_LIBRARY
NAMES DataPipes-RTC.dll libDataPipes-RTC.so
NAMES DataPipes-Rtc-Shared.dll libDataPipes-Rtc-Shared.so
HINTS ${DataPipes_ROOT_DIR} ${DataPipes_ROOT_DIR}/lib
)

Expand Down

0 comments on commit 8c26435

Please sign in to comment.