CMakeLists.txt 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. # -*- cmake -*-
  2. project(llui)
  3. include(00-Common)
  4. include(Hunspell)
  5. include(LLCommon)
  6. include(LLFilesystem)
  7. include(LLImage)
  8. include(LLInventory)
  9. include(LLMath)
  10. include(LLMessage)
  11. include(LLRender)
  12. include(LLWindow)
  13. include(LLXML)
  14. set(llui_SOURCE_FILES
  15. llalertdialog.cpp
  16. llbutton.cpp
  17. llcheckboxctrl.cpp
  18. llclipboard.cpp
  19. llcombobox.cpp
  20. llconfirmationmanager.cpp
  21. llconsole.cpp
  22. llcontainerview.cpp
  23. lldraghandle.cpp
  24. lleditmenuhandler.cpp
  25. hbexternaleditor.cpp
  26. hbfileselector.cpp
  27. llfloater.cpp
  28. hbfloateruserauth.cpp
  29. llfocusmgr.cpp
  30. lliconctrl.cpp
  31. llkeywords.cpp
  32. lllineeditor.cpp
  33. lllocale.cpp
  34. llmenugl.cpp
  35. llmimetypes.cpp
  36. llmodaldialog.cpp
  37. llmultisliderctrl.cpp
  38. llnamebox.cpp
  39. llnameeditor.cpp
  40. llnamelistctrl.cpp
  41. llnotifications.cpp
  42. llpanel.cpp
  43. llprogressbar.cpp
  44. llradiogroup.cpp
  45. llresizebar.cpp
  46. llresizehandle.cpp
  47. llscrollbar.cpp
  48. llscrollcontainer.cpp
  49. llscrollingpanellist.cpp
  50. llscrolllistctrl.cpp
  51. llsliderctrl.cpp
  52. llspellcheck.cpp
  53. llspinctrl.cpp
  54. llstatbar.cpp
  55. llstatgraph.cpp
  56. llstatview.cpp
  57. llstyle.cpp
  58. llstylemap.cpp
  59. lltabcontainer.cpp
  60. lltextbox.cpp
  61. lltexteditor.cpp
  62. lltrans.cpp
  63. llui.cpp
  64. lluictrl.cpp
  65. lluictrlfactory.cpp
  66. lluistring.cpp
  67. llundo.cpp
  68. lluploaddialog.cpp
  69. llview.cpp
  70. llviewborder.cpp
  71. llviewquery.cpp
  72. llvirtualtrackball.cpp
  73. llxyvector.cpp
  74. )
  75. set(llui_HEADER_FILES
  76. CMakeLists.txt
  77. llalertdialog.h
  78. llbutton.h
  79. llcallbackmap.h
  80. llcheckboxctrl.h
  81. llclipboard.h
  82. llcombobox.h
  83. llconfirmationmanager.h
  84. llconsole.h
  85. llcontainerview.h
  86. lldraghandle.h
  87. lleditmenuhandler.h
  88. hbexternaleditor.h
  89. hbfileselector.h
  90. llfloater.h
  91. hbfloateruserauth.h
  92. llfocusmgr.h
  93. llfunctorregistry.h
  94. llhtmlhelp.h
  95. lliconctrl.h
  96. llkeywords.h
  97. lllineeditor.h
  98. lllocale.h
  99. llmemberlistener.h
  100. llmenugl.h
  101. llmimetypes.h
  102. llmodaldialog.h
  103. llmultisliderctrl.h
  104. llnamebox.h
  105. llnameeditor.h
  106. llnamelistctrl.h
  107. llnotifications.h
  108. llpanel.h
  109. llprogressbar.h
  110. llradiogroup.h
  111. llresizebar.h
  112. llresizehandle.h
  113. llscrollbar.h
  114. llscrollcontainer.h
  115. llscrollingpanellist.h
  116. llscrolllistctrl.h
  117. llsliderctrl.h
  118. llspellcheck.h
  119. llspinctrl.h
  120. llstatbar.h
  121. llstatgraph.h
  122. llstatview.h
  123. llstyle.h
  124. llstylemap.h
  125. lltabcontainer.h
  126. lltextbox.h
  127. lltexteditor.h
  128. lltrans.h
  129. lluictrlfactory.h
  130. lluictrl.h
  131. llui.h
  132. lluistring.h
  133. llundo.h
  134. lluploaddialog.h
  135. llview.h
  136. llviewborder.h
  137. llviewquery.h
  138. llvirtualtrackball.h
  139. llxyvector.h
  140. )
  141. set_source_files_properties(${llui_HEADER_FILES}
  142. PROPERTIES HEADER_FILE_ONLY TRUE)
  143. list(APPEND llui_SOURCE_FILES ${llui_HEADER_FILES})
  144. add_library (llui ${llui_SOURCE_FILES})
  145. # Libraries on which this library depends, needed for Linux builds
  146. # Sort by high-level to low-level
  147. target_link_libraries(llui
  148. llrender
  149. llwindow
  150. llimage
  151. llfilesystem # ugh, just for LLDir
  152. llxml
  153. llcommon # must be after llimage, llwindow, llrender
  154. llmath
  155. )
  156. if (NOT ${CMAKE_VERSION} VERSION_LESS "3.16.0")
  157. target_precompile_headers(llui PRIVATE <linden_common.h> <llfasttimer.h> llview.h)
  158. if (USEUNITYBUILD)
  159. set_target_properties(llui PROPERTIES UNITY_BUILD ON)
  160. endif (USEUNITYBUILD)
  161. endif ()
  162. get_directory_property(ALLDEFINES COMPILE_DEFINITIONS)
  163. message("llui COMPILE_DEFINITIONS = ${ALLDEFINES}")