mirror of https://github.com/AxioDL/metaforce.git
Add jbus submodule
This commit is contained in:
parent
1e930e8a9e
commit
1179c2a43e
|
@ -13,3 +13,6 @@
|
||||||
[submodule "kabufuda"]
|
[submodule "kabufuda"]
|
||||||
path = kabufuda
|
path = kabufuda
|
||||||
url = https://github.com/AxioDL/kabufuda.git
|
url = https://github.com/AxioDL/kabufuda.git
|
||||||
|
[submodule "jbus"]
|
||||||
|
path = jbus
|
||||||
|
url = https://github.com/AxioDL/jbus.git
|
||||||
|
|
|
@ -111,6 +111,8 @@ set(CLIENT_SOURCES
|
||||||
${CMAKE_SOURCE_DIR}/Editor/ProjectResourceFactoryMP1.cpp)
|
${CMAKE_SOURCE_DIR}/Editor/ProjectResourceFactoryMP1.cpp)
|
||||||
add_subdirectory(Runtime)
|
add_subdirectory(Runtime)
|
||||||
add_subdirectory(mpcksum)
|
add_subdirectory(mpcksum)
|
||||||
|
add_subdirectory(jbus)
|
||||||
|
set(JBUS_INCLUDE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/jbus/include)
|
||||||
add_subdirectory(gbalink)
|
add_subdirectory(gbalink)
|
||||||
|
|
||||||
unset(GIT_EXECUTABLE CACHE)
|
unset(GIT_EXECUTABLE CACHE)
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
if (NOT WIN32)
|
if (NOT WIN32)
|
||||||
include_directories(. ./../Runtime ${ATHENA_INCLUDE_DIR})
|
include_directories(. ./../Runtime ${ATHENA_INCLUDE_DIR} ${JBUS_INCLUDE_DIR})
|
||||||
add_executable(gbalink main.cpp)
|
add_executable(gbalink main.cpp)
|
||||||
|
target_link_libraries(gbalink jbus)
|
||||||
endif()
|
endif()
|
||||||
|
|
1206
gbalink/main.cpp
1206
gbalink/main.cpp
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit 9b2b1fd1e6a988a88c15c8cb7594be37c77f619e
|
Loading…
Reference in New Issue