blob: f44f109a50c6907545cb6eff8d1ef94b8495ccca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
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
StarWorldPainter.hpp
)
SET (star_rendering_SOURCES
StarAnchorTypes.cpp
StarAssetTextureGroup.cpp
StarDrawablePainter.cpp
StarEnvironmentPainter.cpp
StarFontTextureGroup.cpp
StarTextPainter.cpp
StarTilePainter.cpp
StarWorldPainter.cpp
)
ADD_LIBRARY (star_rendering OBJECT ${star_rendering_SOURCES} ${star_rendering_HEADERS})
IF(STAR_PRECOMPILED_HEADERS)
TARGET_PRECOMPILE_HEADERS (star_rendering REUSE_FROM star_core)
ENDIF()
|