comparison CMakeLists.txt @ 593:f9e85d0aca74

rpg: introduce private loader_file to help allocating map/tileset The structure is just an allocator and owner for various data shared among the map and the tileset such as sprites, textures, animations... While here, simplify use of mlk_(map|tileset)_loader_file so they don't have a public structure anymore but insert themselves into the loader->data.
author David Demelier <markand@malikania.fr>
date Tue, 21 Mar 2023 14:08:15 +0100
parents 4349b591c3ac
children e070fdcc592b
comparison
equal deleted inserted replaced
592:1560ef13146c 593:f9e85d0aca74
85 find_package(Intl REQUIRED) 85 find_package(Intl REQUIRED)
86 endif () 86 endif ()
87 87
88 add_subdirectory(extern/libsqlite) 88 add_subdirectory(extern/libsqlite)
89 add_subdirectory(extern/libdt) 89 add_subdirectory(extern/libdt)
90 add_subdirectory(extern/libutlist)
90 91
91 if (MLK_WITH_DOXYGEN) 92 if (MLK_WITH_DOXYGEN)
92 add_subdirectory(doc) 93 add_subdirectory(doc)
93 endif () 94 endif ()
94 95