[nostalgia/studio] Get save working

This commit is contained in:
2022-02-19 01:45:37 -06:00
parent 5b7dacd51f
commit 56ec063658
12 changed files with 73 additions and 27 deletions
+9 -6
View File
@@ -45,19 +45,22 @@ else()
)
endif()
add_library(
NostalgiaCore
set(
NOSTALGIA_CORE_GENERAL_SRC
gfx.cpp
media.cpp
typeconv.cpp
)
add_library(
NostalgiaCore
${NOSTALGIA_CORE_GENERAL_SRC}
${NOSTALGIA_CORE_IMPL_SRC}
)
add_library(
NostalgiaCore-Headless
gfx.cpp
media.cpp
typeconv.cpp
${NOSTALGIA_CORE_GENERAL_SRC}
headless/core.cpp
headless/gfx.cpp
headless/media.cpp
@@ -75,7 +78,7 @@ target_link_libraries(
)
target_link_libraries(
NostalgiaCore-Headless PUBLIC
NostalgiaCore-Headless PUBLIC
OxClaw
OxFS
)