PageRenderTime 188ms CodeModel.GetById 15ms RepoModel.GetById 1ms app.codeStats 0ms

/indra/cmake/LLPrimitive.cmake

https://bitbucket.org/lindenlab/viewer-beta/
CMake | 33 lines | 28 code | 3 blank | 2 comment | 2 complexity | 8a7a87161a00b29e6f415a4b51806b35 MD5 | raw file
Possible License(s): LGPL-2.1
  1. # -*- cmake -*-
  2. # these should be moved to their own cmake file
  3. include(Prebuilt)
  4. use_prebuilt_binary(colladadom)
  5. use_prebuilt_binary(pcre)
  6. use_prebuilt_binary(libxml)
  7. set(LLPRIMITIVE_INCLUDE_DIRS
  8. ${LIBS_OPEN_DIR}/llprimitive
  9. )
  10. if (WINDOWS)
  11. set(LLPRIMITIVE_LIBRARIES
  12. debug llprimitive
  13. optimized llprimitive
  14. debug libcollada14dom22-d
  15. optimized libcollada14dom22
  16. debug libboost_filesystem-vc100-mt-gd-1_45
  17. optimized libboost_filesystem-vc100-mt-1_45
  18. debug libboost_system-vc100-mt-gd-1_45
  19. optimized libboost_system-vc100-mt-1_45
  20. )
  21. else (WINDOWS)
  22. set(LLPRIMITIVE_LIBRARIES
  23. llprimitive
  24. collada14dom
  25. minizip
  26. xml2
  27. pcrecpp
  28. pcre
  29. )
  30. endif (WINDOWS)