Merge pull request #94 from wheremyfoodat/http-option

Add HTTP server CMake option for Pokemon Bot
This commit is contained in:
wheremyfoodat 2023-07-09 22:49:11 +03:00 committed by GitHub
commit d75c183d11
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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()