2020-09-25 12:43:53 -04:00
|
|
|
project(mods)
|
|
|
|
|
2021-01-27 16:26:19 -05:00
|
|
|
## Setup
|
|
|
|
|
2020-12-04 16:27:28 -05:00
|
|
|
# Disable C++11 String ABI
|
2020-10-10 19:02:13 -04:00
|
|
|
add_definitions(-D_GLIBCXX_USE_CXX11_ABI=0)
|
2020-09-25 12:43:53 -04:00
|
|
|
|
2021-01-27 16:26:19 -05:00
|
|
|
## Mods
|
|
|
|
|
2021-06-27 22:16:37 -04:00
|
|
|
add_library(compat SHARED src/compat/compat.c src/compat/egl.c src/compat/x11.c)
|
2021-09-11 23:18:12 -04:00
|
|
|
target_link_libraries(compat reborn media-layer-core)
|
2020-12-02 18:18:49 -05:00
|
|
|
|
2021-01-27 16:26:19 -05:00
|
|
|
add_library(readdir SHARED src/readdir/readdir.c)
|
2020-09-25 12:43:53 -04:00
|
|
|
|
2020-12-02 18:18:49 -05:00
|
|
|
add_library(feature SHARED src/feature/feature.c)
|
2021-01-27 16:26:19 -05:00
|
|
|
target_link_libraries(feature reborn)
|
2020-12-02 18:18:49 -05:00
|
|
|
|
2021-06-28 16:00:52 -04:00
|
|
|
add_library(version SHARED src/version/version.cpp)
|
2021-09-11 23:18:12 -04:00
|
|
|
target_link_libraries(version reborn symbols)
|
|
|
|
|
|
|
|
add_library(chat SHARED src/chat/chat.cpp src/chat/ui.c)
|
|
|
|
target_link_libraries(chat reborn symbols feature pthread)
|
2021-06-28 16:00:52 -04:00
|
|
|
|
2021-06-17 17:32:24 -04:00
|
|
|
if(MCPI_SERVER_MODE)
|
|
|
|
add_library(server SHARED src/server/server.cpp src/server/server_properties.cpp)
|
2021-09-11 23:18:12 -04:00
|
|
|
target_link_libraries(server reborn symbols feature home compat version dl media-layer-core pthread)
|
2021-06-27 22:16:37 -04:00
|
|
|
else()
|
2021-09-11 23:18:12 -04:00
|
|
|
target_link_libraries(compat input sign chat home dl)
|
|
|
|
|
|
|
|
target_link_libraries(chat input)
|
|
|
|
|
2021-06-27 22:16:37 -04:00
|
|
|
add_library(multiplayer SHARED src/multiplayer/multiplayer.cpp)
|
2021-09-11 23:18:12 -04:00
|
|
|
target_link_libraries(multiplayer reborn symbols home feature)
|
2020-11-24 17:12:23 -05:00
|
|
|
|
2021-09-11 23:18:12 -04:00
|
|
|
add_library(sound SHARED src/sound/sound.cpp src/sound/repository.cpp)
|
|
|
|
target_link_libraries(sound reborn symbols feature override media-layer-core)
|
2020-10-03 20:30:15 -04:00
|
|
|
|
2021-09-11 23:18:12 -04:00
|
|
|
add_library(camera SHARED src/camera/camera.cpp)
|
|
|
|
target_link_libraries(camera reborn symbols media-layer-core feature home)
|
2020-11-27 20:49:13 -05:00
|
|
|
|
2021-09-11 23:18:12 -04:00
|
|
|
add_library(input SHARED src/input/input.cpp src/input/bow.c src/input/attack.c src/input/toggle.c src/input/misc.c src/input/drop.cpp)
|
|
|
|
target_link_libraries(input reborn symbols feature media-layer-core)
|
2021-06-28 22:59:24 -04:00
|
|
|
|
2021-09-11 23:18:12 -04:00
|
|
|
add_library(sign SHARED src/sign/sign.cpp)
|
|
|
|
target_link_libraries(sign reborn symbols feature input)
|
2020-10-05 18:17:55 -04:00
|
|
|
|
2021-09-11 23:18:12 -04:00
|
|
|
add_library(creative SHARED src/creative/creative.cpp)
|
|
|
|
target_link_libraries(creative reborn symbols feature)
|
2021-06-21 21:50:26 -04:00
|
|
|
|
2021-09-11 23:18:12 -04:00
|
|
|
add_library(touch SHARED src/touch/touch.c)
|
|
|
|
target_link_libraries(touch reborn symbols feature)
|
2020-12-02 18:18:49 -05:00
|
|
|
|
2021-09-11 23:18:12 -04:00
|
|
|
add_library(override SHARED src/override/override.c)
|
|
|
|
target_link_libraries(override reborn symbols dl home)
|
2021-08-05 21:00:41 -04:00
|
|
|
|
2021-09-11 23:18:12 -04:00
|
|
|
add_library(textures SHARED src/textures/textures.cpp)
|
2021-09-28 14:04:05 -04:00
|
|
|
target_link_libraries(textures reborn symbols media-layer-core feature)
|
2020-12-02 18:18:49 -05:00
|
|
|
|
2021-09-11 23:18:12 -04:00
|
|
|
add_library(atlas SHARED src/atlas/atlas.cpp)
|
|
|
|
target_link_libraries(atlas reborn symbols feature GLESv1_CM)
|
|
|
|
endif()
|
2021-06-19 19:07:09 -04:00
|
|
|
|
2021-09-11 23:18:12 -04:00
|
|
|
add_library(game-mode SHARED src/game-mode/game-mode.c src/game-mode/game-mode.cpp)
|
|
|
|
target_link_libraries(game-mode reborn symbols feature)
|
2020-12-02 18:18:49 -05:00
|
|
|
|
2021-09-11 23:18:12 -04:00
|
|
|
add_library(death SHARED src/death/death.cpp)
|
|
|
|
target_link_libraries(death reborn symbols feature)
|
2021-06-30 19:41:18 -04:00
|
|
|
|
2021-09-11 23:18:12 -04:00
|
|
|
add_library(misc SHARED src/misc/misc.c src/misc/misc.cpp)
|
|
|
|
target_link_libraries(misc reborn symbols feature)
|
2020-09-25 12:43:53 -04:00
|
|
|
|
2021-09-11 23:18:12 -04:00
|
|
|
add_library(options SHARED src/options/options.c)
|
|
|
|
target_link_libraries(options reborn symbols feature)
|
2021-02-16 12:26:40 -05:00
|
|
|
|
2021-06-17 17:32:24 -04:00
|
|
|
add_library(home SHARED src/home/home.c)
|
2021-09-11 23:18:12 -04:00
|
|
|
target_link_libraries(home reborn symbols)
|
2021-06-17 17:32:24 -04:00
|
|
|
|
2021-01-27 11:13:06 -05:00
|
|
|
add_library(test SHARED src/test/test.c)
|
2021-06-17 17:32:24 -04:00
|
|
|
target_link_libraries(test reborn home)
|
2021-01-27 11:13:06 -05:00
|
|
|
|
2020-12-02 18:18:49 -05:00
|
|
|
add_library(init SHARED src/init/init.c)
|
2021-09-11 23:18:12 -04:00
|
|
|
target_link_libraries(init compat game-mode misc death options chat home version test)
|
2021-06-17 17:32:24 -04:00
|
|
|
if(MCPI_SERVER_MODE)
|
|
|
|
target_link_libraries(init server)
|
2021-06-27 22:16:37 -04:00
|
|
|
else()
|
2021-09-11 23:18:12 -04:00
|
|
|
target_link_libraries(init multiplayer sound camera input sign creative touch textures atlas)
|
2021-06-17 17:32:24 -04:00
|
|
|
endif()
|
2021-01-27 16:26:19 -05:00
|
|
|
|
2021-02-21 14:53:17 -05:00
|
|
|
## Install Mods
|
2021-09-11 23:18:12 -04:00
|
|
|
install(TARGETS init compat readdir feature game-mode misc death options chat home version test DESTINATION "${MCPI_INSTALL_DIR}/mods")
|
2021-06-17 17:32:24 -04:00
|
|
|
if(MCPI_SERVER_MODE)
|
|
|
|
install(TARGETS server DESTINATION "${MCPI_INSTALL_DIR}/mods")
|
2021-06-27 22:16:37 -04:00
|
|
|
else()
|
2021-09-11 23:18:12 -04:00
|
|
|
install(TARGETS multiplayer sound override camera input sign creative touch textures atlas DESTINATION "${MCPI_INSTALL_DIR}/mods")
|
2021-06-17 17:32:24 -04:00
|
|
|
endif()
|