Add HTTP server CMake option for Pokemon Bot

This commit is contained in:
wheremyfoodat 2023-07-09 22:26:56 +03:00
parent 6f6e0767d9
commit ced61914c4

View file

@ -21,6 +21,7 @@ option(DISABLE_PANIC_DEV "Make a build with fewer and less intrusive asserts" OF
option(GPU_DEBUG_INFO "Enable additional GPU debugging info" OFF)
option(ENABLE_LTO "Enable link-time optimization" OFF)
option(ENABLE_USER_BUILD "Make a user-facing build. These builds have various assertions disabled, LTO, and more" OFF)
option(ENABLE_HTTP_SERVER "Enable HTTP server. Used for Discord bot support" OFF)
include_directories(${PROJECT_SOURCE_DIR}/include/)
include_directories(${PROJECT_SOURCE_DIR}/include/kernel)
@ -186,3 +187,7 @@ endif()
if(ENABLE_USER_BUILD OR DISABLE_PANIC_DEV)
target_compile_definitions(Alber PRIVATE PANDA3DS_LIMITED_PANICS=1)
endif()
if(ENABLE_HTTP_SERVER)
target_compile(Alber PRIVATE PANDA3DS_ENABLE_HTTP_SERVER=1)
endif()