Compare commits

..

4 Commits

Author SHA1 Message Date
gary 5aa133a788 [nostalgia] Fix Ox references
Build / build (push) Successful in 1m9s
2026-05-06 02:48:59 -05:00
gary fafe78ba80 [nostalgia] Adjust for new ox path
Build / build (push) Successful in 1m9s
2026-05-06 01:40:34 -05:00
gary 335a61bd79 Merge commit '69fcd7ad1056940166a5d9524b4f03578f680834' as 'deps/oxlib' 2026-05-06 01:38:00 -05:00
gary 69fcd7ad10 Squashed 'deps/oxlib/' content from commit 85f17c41
git-subtree-dir: deps/oxlib
git-subtree-split: 85f17c4188e266b82ba8858d21f67289c72e7b9a
2026-05-06 01:38:00 -05:00
460 changed files with 10 additions and 20 deletions
+2 -5
View File
@@ -9,7 +9,7 @@ else()
project(nostalgia C CXX) project(nostalgia C CXX)
endif() endif()
include(deps/buildcore/base.cmake) include(deps/oxlib/deps/buildcore/base.cmake)
set(OX_ENABLE_TRACEHOOK OFF CACHE BOOL "Generate OxTraceHook shared library for uprobes") set(OX_ENABLE_TRACEHOOK OFF CACHE BOOL "Generate OxTraceHook shared library for uprobes")
@@ -35,10 +35,7 @@ else()
set(CMAKE_BUILD_WITH_INSTALL_RPATH TRUE) set(CMAKE_BUILD_WITH_INSTALL_RPATH TRUE)
endif() endif()
add_subdirectory(deps/ox) add_subdirectory(deps/oxlib)
include_directories(
deps/ox/src
)
add_subdirectory(deps/teagba) add_subdirectory(deps/teagba)
if(NOT BUILDCORE_TARGET STREQUAL "gba") if(NOT BUILDCORE_TARGET STREQUAL "gba")
+3 -3
View File
@@ -1,7 +1,7 @@
BC_VAR_PROJECT_NAME=nostalgia BC_VAR_PROJECT_NAME=nostalgia
BC_VAR_PROJECT_NAME_CAP=Nostalgia BC_VAR_PROJECT_NAME_CAP=Nostalgia
BC_VAR_DEVENV_ROOT=util BC_VAR_DEVENV_ROOT=util
BUILDCORE_PATH=deps/ox/deps/buildcore BUILDCORE_PATH=deps/oxlib/deps/buildcore
include ${BUILDCORE_PATH}/base.mk include ${BUILDCORE_PATH}/base.mk
ifeq ($(BC_VAR_OS),darwin) ifeq ($(BC_VAR_OS),darwin)
@@ -20,11 +20,11 @@ git-setup-ox-remote:
.PHONY: git-pull-ox .PHONY: git-pull-ox
git-pull-ox: git-pull-ox:
git fetch ox-master master git fetch ox-master master
git subtree pull --prefix deps/ox ox-master master --squash git subtree pull --prefix deps/oxlib ox-master master --squash
.PHONY: git-push-ox .PHONY: git-push-ox
git-push-ox: git-push-ox:
git subtree push --prefix=deps/ox ox-master master git subtree push --prefix=deps/oxlib ox-master master
.PHONY: pkg-gba .PHONY: pkg-gba
pkg-gba: build-pack build-gba-player pkg-gba: build-pack build-gba-player
View File
-7
View File
@@ -78,13 +78,6 @@ include_directories(src)
install(FILES OxConfig.cmake DESTINATION lib/cmake/ox) install(FILES OxConfig.cmake DESTINATION lib/cmake/ox)
install(
DIRECTORY
include/ox
DESTINATION
include
)
if(OX_USE_STDLIB) if(OX_USE_STDLIB)
set(JSONCPP_INCLUDE_DIR "${CMAKE_CURRENT_SOURCE_DIR}/deps/jsoncpp/include") set(JSONCPP_INCLUDE_DIR "${CMAKE_CURRENT_SOURCE_DIR}/deps/jsoncpp/include")
add_subdirectory(deps/jsoncpp) add_subdirectory(deps/jsoncpp)
View File
View File

Some files were not shown because too many files have changed in this diff Show More