Created llappearance project. Migrated llvoavatardefines and llwearabletype.

This commit is contained in:
Shyotl
2012-12-20 00:00:17 -06:00
parent 3750123e43
commit e08afcb963
37 changed files with 695 additions and 538 deletions

View File

@@ -0,0 +1,89 @@
# -*- cmake -*-
project(llappearance)
include(00-Common)
include(LLCommon)
include(LLCharacter)
include(LLImage)
include(LLInventory)
include(LLMath)
include(LLMessage)
include(LLRender)
include(LLVFS)
include(LLWindow)
include(LLXML)
include(Linking)
include_directories(
${LLCOMMON_INCLUDE_DIRS}
${LLCHARACTER_INCLUDE_DIRS}
${LLIMAGE_INCLUDE_DIRS}
${LLINVENTORY_INCLUDE_DIRS}
${LLMATH_INCLUDE_DIRS}
${LLRENDER_INCLUDE_DIRS}
${LLVFS_INCLUDE_DIRS}
${LLWINDOW_INCLUDE_DIRS}
${LLXML_INCLUDE_DIRS}
)
set(llappearance_SOURCE_FILES
#llavatarappearance.cpp
#llavatarjoint.cpp
#llavatarjointmesh.cpp
#lldriverparam.cpp
#lllocaltextureobject.cpp
#llpolyskeletaldistortion.cpp
#llpolymesh.cpp
#llpolymorph.cpp
#lltexglobalcolor.cpp
#lltexlayer.cpp
#lltexlayerparams.cpp
#lltexturemanagerbridge.cpp
#llwearable.cpp
#llwearabledata.cpp
llwearabletype.cpp
#llviewervisualparam.cpp
llavatarappearancedefines.cpp
)
set(llappearance_HEADER_FILES
CMakeLists.txt
#llavatarappearance.h
#llavatarjoint.h
#llavatarjointmesh.h
#lldriverparam.h
lljointpickname.h
#lllocaltextureobject.h
#llpolyskeletaldistortion.h
#llpolymesh.h
#llpolymorph.h
#lltexglobalcolor.h
#lltexlayer.h
#lltexlayerparams.h
#lltexturemanagerbridge.h
#llwearable.h
#llwearabledata.h
llwearabletype.h
#llviewervisualparam.h
llavatarappearancedefines.h
)
set_source_files_properties(${llappearance_HEADER_FILES}
PROPERTIES HEADER_FILE_ONLY TRUE)
list(APPEND llappearance_SOURCE_FILES ${llappearance_HEADER_FILES})
add_library (llappearance ${llappearance_SOURCE_FILES})
target_link_libraries(llappearance
${LLCHARACTER_LIBRARIES}
${LLINVENTORY_LIBRARIES}
${LLIMAGE_LIBRARIES}
${LLRENDER_LIBRARIES}
${LLVFS_LIBRARIES}
${LLMATH_LIBRARIES}
${LLXML_LIBRARIES}
${LLCOMMON_LIBRARIES}
)