
add_library(
	NostalgiaScene
		scene.cpp
		scenestatic.cpp
		scenemodule.cpp
		typeconv.cpp
)

target_link_libraries(
	NostalgiaScene PUBLIC
		NostalgiaCore
)

install(
	FILES
		scenestatic.hpp
		scenemodule.hpp
		typeconv.hpp
	DESTINATION
		include/nostalgia/scene
)

if(NOSTALGIA_BUILD_STUDIO)
	add_subdirectory(studio)
endif()
