osb/source/rendering/CMakeLists.txt

39 lines
1002 B
CMake
Raw Normal View History

2023-06-20 04:33:09 +00:00
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})
2024-03-08 09:09:27 +00:00
IF(STAR_PRECOMPILED_HEADERS)
TARGET_PRECOMPILE_HEADERS (star_rendering REUSE_FROM star_core)
ENDIF()