diff options
author | Oz Linden <oz@lindenlab.com> | 2012-04-11 12:14:35 -0400 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2012-04-11 12:14:35 -0400 |
commit | 51ceacbb45802209c36c555c03eeeb2f5fd1d3b4 (patch) | |
tree | 9c39ab4544443d5e8998c78666b32283abd65389 | |
parent | 63196a9c08c94ced5bb9ff5b9e623564d956bcd8 (diff) |
fix ordering problem in libraries?
-rw-r--r-- | indra/llui/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llui/CMakeLists.txt b/indra/llui/CMakeLists.txt index 2208a2f327..d0fd37a5b4 100644 --- a/indra/llui/CMakeLists.txt +++ b/indra/llui/CMakeLists.txt @@ -253,7 +253,6 @@ add_library (llui ${llui_SOURCE_FILES}) # Libraries on which this library depends, needed for Linux builds # Sort by high-level to low-level target_link_libraries(llui - ${HUNSPELL_LIBRARY} ${LLMESSAGE_LIBRARIES} ${LLRENDER_LIBRARIES} ${LLWINDOW_LIBRARIES} @@ -263,6 +262,7 @@ target_link_libraries(llui ${LLXUIXML_LIBRARIES} ${LLXML_LIBRARIES} ${LLMATH_LIBRARIES} + ${HUNSPELL_LIBRARY} ${LLCOMMON_LIBRARIES} # must be after llimage, llwindow, llrender ) |