diff options
author | Richard Linden <none@none> | 2012-01-20 13:51:46 -0800 |
---|---|---|
committer | Richard Linden <none@none> | 2012-01-20 13:51:46 -0800 |
commit | 057da807ac55f9b0583ff334cd12b3568ab81a18 (patch) | |
tree | a6cbbc7e151c9e409dd29172d562221ae9b77901 /indra/llxuixml/CMakeLists.txt | |
parent | b022ebf13c9a227f87a112419e237894a1231c8c (diff) |
removed LLXUIXML library
moved LLInitParam, and LLRegistry to llcommon
moved LLUIColor, LLTrans, and LLXUIParser to llui
reviewed by Nat
Diffstat (limited to 'indra/llxuixml/CMakeLists.txt')
-rw-r--r-- | indra/llxuixml/CMakeLists.txt | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/indra/llxuixml/CMakeLists.txt b/indra/llxuixml/CMakeLists.txt deleted file mode 100644 index daed4de6ce..0000000000 --- a/indra/llxuixml/CMakeLists.txt +++ /dev/null @@ -1,45 +0,0 @@ -# -*- cmake -*- - -project(llxuixml) - -include(00-Common) -include(LLCommon) -include(LLMath) -include(LLXML) - -include_directories( - ${LLCOMMON_INCLUDE_DIRS} - ${LLMATH_INCLUDE_DIRS} - ${LLXML_INCLUDE_DIRS} - ) - -set(llxuixml_SOURCE_FILES - llinitparam.cpp - lltrans.cpp - lluicolor.cpp - llxuiparser.cpp - ) - -set(llxuixml_HEADER_FILES - CMakeLists.txt - - llinitparam.h - lltrans.h - llregistry.h - lluicolor.h - llxuiparser.h - ) - -set_source_files_properties(${llxuixml_HEADER_FILES} - PROPERTIES HEADER_FILE_ONLY TRUE) - -list(APPEND llxuixml_SOURCE_FILES ${llxuixml_HEADER_FILES}) - -add_library (llxuixml ${llxuixml_SOURCE_FILES}) -# Libraries on which this library depends, needed for Linux builds -# Sort by high-level to low-level -target_link_libraries(llxuixml - llxml - llcommon - llmath - ) |