PageRenderTime 30ms CodeModel.GetById 1ms RepoModel.GetById 0ms app.codeStats 0ms

/indra/llcrashlogger/CMakeLists.txt

https://bitbucket.org/lindenlab/viewer-beta/
CMake | 35 lines | 25 code | 9 blank | 1 comment | 0 complexity | d6736a07048db57be5d763adb4a3083c MD5 | raw file
Possible License(s): LGPL-2.1
  1. # -*- cmake -*-
  2. project(llcrashlogger)
  3. include(00-Common)
  4. include(LLCommon)
  5. include(LLMath)
  6. include(LLMessage)
  7. include(LLVFS)
  8. include(LLXML)
  9. include_directories(
  10. ${LLCOMMON_INCLUDE_DIRS}
  11. ${LLMATH_INCLUDE_DIRS}
  12. ${LLMESSAGE_INCLUDE_DIRS}
  13. ${LLVFS_INCLUDE_DIRS}
  14. ${LLXML_INCLUDE_DIRS}
  15. )
  16. set(llcrashlogger_SOURCE_FILES
  17. llcrashlogger.cpp
  18. )
  19. set(llcrashlogger_HEADER_FILES
  20. CMakeLists.txt
  21. llcrashlogger.h
  22. )
  23. set_source_files_properties(${llcrashlogger_HEADER_FILES}
  24. PROPERTIES HEADER_FILE_ONLY TRUE)
  25. list(APPEND llcrashlogger_SOURCE_FILES ${llcrashlogger_HEADER_FILES})
  26. add_library(llcrashlogger ${llcrashlogger_SOURCE_FILES})