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

target_link_libraries(
	NostalgiaScene PUBLIC
		NostalgiaCore
)

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

if(NOSTALGIA_BUILD_STUDIO)
	add_subdirectory(studio)
endif()
