diff options
author | Don Kjer <don@lindenlab.com> | 2012-09-13 10:25:48 +0000 |
---|---|---|
committer | Don Kjer <don@lindenlab.com> | 2012-09-13 10:25:48 +0000 |
commit | 8ba2b388769e245ec1b49b7d6d4b0372d684ff86 (patch) | |
tree | b43b39372fe156aac4f70cd22456c7df8d1df101 /indra/llxml | |
parent | 929b7e029513ecbb08c415e945c83ea09dc1b3eb (diff) |
Fleshed out target_link_libraries dependencies between libraries. Appearance utility now reads avatar_lad.xml during stubbed out params processing.
Diffstat (limited to 'indra/llxml')
-rw-r--r-- | indra/llxml/CMakeLists.txt | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/indra/llxml/CMakeLists.txt b/indra/llxml/CMakeLists.txt index beefcda361..ccd8387633 100644 --- a/indra/llxml/CMakeLists.txt +++ b/indra/llxml/CMakeLists.txt @@ -39,9 +39,10 @@ list(APPEND llxml_SOURCE_FILES ${llxml_HEADER_FILES}) add_library (llxml ${llxml_SOURCE_FILES}) # Libraries on which this library depends, needed for Linux builds # Sort by high-level to low-level -target_link_libraries( llxml - llvfs - llmath +target_link_libraries(llxml + ${LLVFS_LIBRARIES} + ${LLMATH_LIBRARIES} + ${LLCOMMON_LIBRARIES} ${EXPAT_LIBRARIES} ) |