2020-09-29 13:47:50 +02:00
|
|
|
cmake_minimum_required(VERSION 3.2)
|
|
|
|
project(mm_logo_screen CXX)
|
|
|
|
|
|
|
|
add_library(mm_logo_screen
|
|
|
|
res/mush_machine_logo_1.svg.png.h
|
|
|
|
|
|
|
|
src/mm/screens/mm_logo_screen.hpp
|
|
|
|
src/mm/screens/mm_logo_screen.cpp
|
|
|
|
)
|
|
|
|
|
|
|
|
target_include_directories(mm_logo_screen PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/src")
|
|
|
|
|
|
|
|
target_link_libraries(mm_logo_screen
|
|
|
|
entt
|
|
|
|
glm
|
|
|
|
engine
|
|
|
|
screen_director
|
2021-12-11 23:21:09 +01:00
|
|
|
organizer_scene
|
2020-09-29 13:47:50 +02:00
|
|
|
|
|
|
|
opengl_renderer_s
|
|
|
|
simple_sprite_render_task
|
|
|
|
|
|
|
|
common_components
|
2022-01-04 22:33:59 +01:00
|
|
|
transform_system
|
2021-12-12 22:56:16 +01:00
|
|
|
|
|
|
|
random
|
2020-09-29 13:47:50 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
#if (BUILD_TESTING)
|
|
|
|
#add_subdirectory(test)
|
|
|
|
#endif()
|
|
|
|
|
|
|
|
|