672b92b3 [nostalgia/gfx/studio] Remove accidental version tag in default Palette 762a6517 [nostalgia] Rename core to gfx d141154a Merge commit '38777cfac8868b3628332090260710d5ac26aba0' 6170647c [nostalgia,studio] Proper fix for input filtering 48e45c7d [studio] Cleanup 5d3d9229 [nostalgia/core/studio/paletteeditor] Ignore keyboard input when popup is open d54e93d8 [studio] Cleanup 7b638538 Merge commit '8e0b6ffbabb10f8a6e9ad7e9f07e0ba1d039a02e' 240effd3 Merge commit '7e20f7200963cd0b22f84cc46e10db12b6c13806' f6f2acd6 [nostalgia/core/studio/tilesheeteditor] Add back file type check for palette drop git-subtree-dir: deps/nostalgia git-subtree-split: 672b92b363a2047c4c8ce93fb3d88001a76da35f
53 lines
879 B
CMake
53 lines
879 B
CMake
# module dir list
|
|
|
|
add_subdirectory(gfx)
|
|
add_subdirectory(scene)
|
|
|
|
# module libraries
|
|
|
|
# Keel
|
|
add_library(
|
|
NostalgiaKeelModules STATIC
|
|
keelmodules.cpp
|
|
)
|
|
target_link_libraries(
|
|
NostalgiaKeelModules PUBLIC
|
|
Keel
|
|
NostalgiaCore-Keel
|
|
NostalgiaScene-Keel
|
|
)
|
|
install(
|
|
FILES
|
|
keelmodules.hpp
|
|
DESTINATION
|
|
include/nostalgia/modules
|
|
)
|
|
|
|
# Studio
|
|
if(NOSTALGIA_BUILD_STUDIO)
|
|
add_library(
|
|
NostalgiaStudioModules STATIC
|
|
studiomodules.cpp
|
|
)
|
|
target_link_libraries(
|
|
NostalgiaStudioModules PUBLIC
|
|
StudioAppLib
|
|
NostalgiaCore-Studio-ImGui
|
|
NostalgiaScene-Studio
|
|
)
|
|
install(
|
|
FILES
|
|
studiomodules.hpp
|
|
DESTINATION
|
|
include/nostalgia/modules
|
|
)
|
|
endif()
|
|
|
|
add_library(NostalgiaProfile INTERFACE)
|
|
target_compile_definitions(
|
|
NostalgiaProfile INTERFACE
|
|
OLYMPIC_PROJECT_NAME="Nostalgia"
|
|
OLYMPIC_PROJECT_NAMESPACE=nostalgia
|
|
OLYMPIC_PROJECT_DATADIR=".nostalgia"
|
|
)
|