Guest User

Untitled

a guest
May 22nd, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Diff 0.51 KB | None | 0 0
  1. diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
  2. index 16fc0da..d76f9b9 100644
  3. --- a/src/CMakeLists.txt
  4. +++ b/src/CMakeLists.txt
  5. @@ -157,6 +157,15 @@ if(USE_FLICKR)
  6.    endif(FLICKCURL_FOUND)
  7.  endif(USE_FLICKR)
  8.  
  9. +if(USE_500PX)
  10. +  find_package(OAuth)
  11. +  if(OAuth_FOUND)
  12. +    include_directories(${OAuth_INCLUDE_DIRS})
  13. +    list(APPEND LIBS ${OAuth_LIBRARIES})
  14. +    add_definitions(${OAuth_DEFINITIONS})
  15. +  endif(OAuth_FOUND)
  16. +endif(USE_500PX)
  17. +
  18.  #
  19.  # Detect compile of optional pwstorage backends
  20.  #
Add Comment
Please, Sign In to add comment