Skip to content

Commit 847b61f

Browse files
authored
Remove legacy TCP Remote Console feature (#3227)
1 parent 554f1a6 commit 847b61f

14 files changed

Lines changed: 1 addition & 2092 deletions

File tree

CMakeOptions.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
- AX_ENABLE_NAVMESH: whether to enable NavMesh support default: `TRUE`
1414
- AX_ENABLE_VIDEO: whether to enable video player, default: `TRUE`
1515
- AX_ENABLE_AUDIO: whether to enable audio support, default: `TRUE`
16-
- AX_ENABLE_CONSOLE: whether to enable debug tool console support, default: `TRUE`
1716
- AX_ENABLE_OPUS: whether to enable audio engine play .opus files support, default: `TRUE`
1817
- AX_ENABLE_VR: whether to enable generic VR renderer support, status: `experimental`, default: `FALSE`
1918
- AX_ENABLE_WAYLAND: whether to enable linux wayland, default: `FALSE`

axmol/CMakeLists.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,6 @@ option(AX_ENABLE_PHYSICS_2D "Build Physics2D support" ON)
180180
cmake_dependent_option(AX_ENABLE_VIDEO "Build video support" ON "AX_ENABLE_MFMEDIA OR AX_ENABLE_VLC_MEDIA OR APPLE OR ANDROID" OFF)
181181
option(AX_ENABLE_AUDIO "Build audio support" ON)
182182
option(AX_ENABLE_OPUS "Build with opus support" ON)
183-
option(AX_ENABLE_CONSOLE "Build axmol debug tool: console support" ON)
184183

185184
option(AX_ENABLE_3D "Build 3D support" ON)
186185
cmake_dependent_option(AX_ENABLE_PHYSICS_3D "Build Physics3D support" ON "AX_ENABLE_3D" OFF)
@@ -443,7 +442,6 @@ ax_config_pred(${_AX_CORE_LIB} AX_ENABLE_PHYSICS_3D)
443442
ax_config_pred(${_AX_CORE_LIB} AX_ENABLE_NAVMESH)
444443
ax_config_pred(${_AX_CORE_LIB} AX_ENABLE_VIDEO)
445444
ax_config_pred(${_AX_CORE_LIB} AX_ENABLE_AUDIO)
446-
ax_config_pred(${_AX_CORE_LIB} AX_ENABLE_CONSOLE)
447445
ax_config_pred(${_AX_CORE_LIB} AX_ENABLE_VR)
448446
ax_config_pred(${_AX_CORE_LIB} AX_ENABLE_OPENXR)
449447
ax_config_pred(${_AX_CORE_LIB} AX_CORE_PROFILE)

axmol/base/CMakeLists.txt

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,3 @@ set(_AX_BASE_SRC
134134
${_AX_BASE_SPECIFIC_SRC}
135135
)
136136

137-
if(AX_ENABLE_CONSOLE)
138-
set(_AX_BASE_HEADER ${_AX_BASE_HEADER} base/Console.h)
139-
set(_AX_BASE_SRC ${_AX_BASE_SRC} base/Console.cpp)
140-
endif()

0 commit comments

Comments
 (0)