36 lines
899 B
CMake
36 lines
899 B
CMake
|
INCLUDE_DIRECTORIES (
|
||
|
${STAR_EXTERN_INCLUDES}
|
||
|
${STAR_CORE_INCLUDES}
|
||
|
${STAR_BASE_INCLUDES}
|
||
|
${STAR_GAME_INCLUDES}
|
||
|
${STAR_PLATFORM_INCLUDES}
|
||
|
${STAR_APPLICATION_INCLUDES}
|
||
|
${STAR_RENDERING_INCLUDES}
|
||
|
)
|
||
|
|
||
|
SET (star_rendering_HEADERS
|
||
|
StarAnchorTypes.hpp
|
||
|
StarAssetTextureGroup.hpp
|
||
|
StarDrawablePainter.hpp
|
||
|
StarEnvironmentPainter.hpp
|
||
|
StarFontTextureGroup.hpp
|
||
|
StarTextPainter.hpp
|
||
|
StarTilePainter.hpp
|
||
|
StarWorldCamera.hpp
|
||
|
StarWorldPainter.hpp
|
||
|
)
|
||
|
|
||
|
SET (star_rendering_SOURCES
|
||
|
StarAnchorTypes.cpp
|
||
|
StarAssetTextureGroup.cpp
|
||
|
StarDrawablePainter.cpp
|
||
|
StarEnvironmentPainter.cpp
|
||
|
StarFontTextureGroup.cpp
|
||
|
StarTextPainter.cpp
|
||
|
StarTilePainter.cpp
|
||
|
StarWorldCamera.cpp
|
||
|
StarWorldPainter.cpp
|
||
|
)
|
||
|
|
||
|
ADD_LIBRARY (star_rendering OBJECT ${star_rendering_SOURCES} ${star_rendering_HEADERS})
|