mirror of
https://github.com/MadeOfJelly/MushMachine.git
synced 2025-06-18 18:56:36 +02:00
initial import, >900commits predate this
This commit is contained in:
30
screens/mm_logo/CMakeLists.txt
Normal file
30
screens/mm_logo/CMakeLists.txt
Normal file
@ -0,0 +1,30 @@
|
||||
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
|
||||
simple_scene
|
||||
|
||||
opengl_renderer_s
|
||||
simple_sprite_render_task
|
||||
|
||||
common_components
|
||||
)
|
||||
|
||||
#if (BUILD_TESTING)
|
||||
#add_subdirectory(test)
|
||||
#endif()
|
||||
|
||||
|
Reference in New Issue
Block a user