Skip to content

Commit

Permalink
Set DrawNodeEx default to 'OFF" (#1613)
Browse files Browse the repository at this point in the history
* Set DrawNodeEx default to 'OFF"

* Update controller.cpp

* Update CMakeOptions.md
  • Loading branch information
aismann authored Jan 14, 2024
1 parent ad935e6 commit 991e63a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeOptions.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
- AX_ENABLE_EXT_EFFEKSEER: the effekseer extension, default: `FALSE`
- AX_ENABLE_EXT_JSONDEFAULT: the UserDefault based on json, default: `FALSE`
- AX_ENABLE_EXT_LUA: the lua extension, default: `TRUE`
- AX_ENABLE_EXT_DRAWNODEEX: the DrawNodeEx extension, default: `TRUE`
- AX_ENABLE_EXT_DRAWNODEEX: the DrawNodeEx extension, default: `FALSE`
- AX_WITH_XXX: usually user don't need care it
- AX_VS_DEPLOYMENT_TARGET: specify windows store deploy target, default: `10.0.17763.0`
- AX_USE_COMPAT_GL: whether use compat gl as renderer backend, default: win32: `TRUE`, others: `FALSE`
Expand Down
2 changes: 1 addition & 1 deletion core/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ option(AX_DISABLE_GLES2 "Whether disable GLES2 support" OFF)

option(AX_ENABLE_EXT_JSONDEFAULT "Build extension JSONDefault" ON)

option(AX_ENABLE_EXT_DRAWNODEEX "Build extension DrawNodeEx" ON)
option(AX_ENABLE_EXT_DRAWNODEEX "Build extension DrawNodeEx" OFF)

if(XCODE)
# set(CMAKE_BUILD_WITH_INSTALL_RPATH YES)
Expand Down
2 changes: 1 addition & 1 deletion tests/cpp-tests/Source/controller.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ class RootTests : public TestList
#pragma message("The optional extension Effekseer is enabled.")
addTest("Effekseer", []() { return new EffekseerTests(); });
#endif
#if __has_include("DrawNodeExTest/DrawNodeExTest.h")
#if __has_include("DrawNodeExTest.h")
# pragma message("The optional extension DrawNodeEx is enabled.")
addTest("DrawNodeEx", []() { return new DrawNodeExTests(); });
#endif
Expand Down

0 comments on commit 991e63a

Please sign in to comment.