You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.4 KiB
55 lines
1.4 KiB
14 years ago
|
include_directories("../")
|
||
|
include_directories("../../Plasma/CoreLib")
|
||
|
include_directories("../../Plasma/FeatureLib")
|
||
|
include_directories("../../Plasma/FeatureLib/inc")
|
||
|
include_directories("../../Plasma/NucleusLib")
|
||
|
include_directories("../../Plasma/NucleusLib/inc")
|
||
|
include_directories("../../Plasma/PubUtilLib")
|
||
|
include_directories("../../Plasma/PubUtilLib/inc")
|
||
|
include_directories(${3dsm_INCLUDE_DIR})
|
||
|
|
||
|
set(MaxConvert_HEADERS
|
||
|
hsControlConverter.h
|
||
|
hsConverterUtils.h
|
||
|
hsMaterialConverter.h
|
||
|
hsMaxLayerBase.h
|
||
|
hsVertexShader.h
|
||
|
plBitmapCreator.h
|
||
|
plClusterUtil.h
|
||
|
plConvert.h
|
||
|
plDistributor.h
|
||
|
plDistTree.h
|
||
|
plLayerConverter.h
|
||
|
plLightMapGen.h
|
||
|
plMaxLightContext.h
|
||
|
plMeshConverter.h
|
||
|
plRenderGlobalContext.h
|
||
|
plRenderInstance.h
|
||
|
StringTokenizer.h
|
||
|
UserPropMgr.h
|
||
|
)
|
||
|
|
||
|
set(MaxConvert_SOURCES
|
||
|
hsControlConverter.cpp
|
||
|
hsConverterUtils.cpp
|
||
|
hsMaterialConverter.cpp
|
||
|
hsVertexShader.cpp
|
||
|
plBitmapCreator.cpp
|
||
|
plClusterUtil.cpp
|
||
|
plConvert.cpp
|
||
|
plDistributor.cpp
|
||
|
plDistTree.cpp
|
||
|
plLayerConverter.cpp
|
||
|
plLightMapGen.cpp
|
||
|
plMeshConverter.cpp
|
||
|
plRenderGlobalContext.cpp
|
||
|
plRenderInstance.cpp
|
||
|
StringTokenizer.cpp
|
||
|
UserPropMgr.cpp
|
||
|
)
|
||
|
|
||
|
add_library(MaxConvert STATIC ${MaxConvert_HEADERS} ${MaxConvert_SOURCES})
|
||
|
|
||
|
source_group("Header Files" FILES ${MaxConvert_HEADERS})
|
||
|
source_group("Source Files" FILES ${MaxConvert_SOURCES})
|