From 798d367d54a6c6379ad355bd8345fa40e31e7fe9 Mon Sep 17 00:00:00 2001 From: Jacek Antonelli Date: Sat, 6 Sep 2008 18:24:57 -0500 Subject: Second Life viewer sources 1.21.0-RC --- linden/indra/llxml/CMakeLists.txt | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 linden/indra/llxml/CMakeLists.txt (limited to 'linden/indra/llxml/CMakeLists.txt') diff --git a/linden/indra/llxml/CMakeLists.txt b/linden/indra/llxml/CMakeLists.txt new file mode 100644 index 0000000..d86bc0d --- /dev/null +++ b/linden/indra/llxml/CMakeLists.txt @@ -0,0 +1,36 @@ +# -*- cmake -*- + +project(llxml) + +include(00-Common) +include(LLCommon) +include(LLMath) +include(LLXML) + +include_directories( + ${LLCOMMON_INCLUDE_DIRS} + ${LLMATH_INCLUDE_DIRS} + ) + +set(llxml_SOURCE_FILES + llcontrol.cpp + llxmlnode.cpp + llxmlparser.cpp + llxmltree.cpp + ) + +set(llxml_HEADER_FILES + CMakeLists.txt + + llcontrol.h + llxmlnode.h + llxmlparser.h + llxmltree.h + ) + +set_source_files_properties(${llxml_HEADER_FILES} + PROPERTIES HEADER_FILE_ONLY TRUE) + +list(APPEND llxml_SOURCE_FILES ${llxml_HEADER_FILES}) + +add_library (llxml ${llxml_SOURCE_FILES}) -- cgit v1.1