mirror of
https://github.com/MadeOfJelly/MushMachine.git
synced 2024-11-11 01:33:03 +01:00
20 lines
378 B
CMake
20 lines
378 B
CMake
|
cmake_minimum_required(VERSION 3.2)
|
||
|
project(organizer_scene CXX)
|
||
|
|
||
|
add_library(organizer_scene
|
||
|
src/mm/services/organizer_scene.hpp
|
||
|
src/mm/services/organizer_scene.cpp
|
||
|
)
|
||
|
|
||
|
target_include_directories(organizer_scene PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/src")
|
||
|
|
||
|
target_link_libraries(organizer_scene
|
||
|
engine
|
||
|
common_components
|
||
|
)
|
||
|
|
||
|
if (BUILD_TESTING)
|
||
|
#add_subdirectory(test)
|
||
|
endif()
|
||
|
|