mirror of
https://github.com/arabine/open-story-teller.git
synced 2025-12-06 08:59:35 +01:00
civetweb options
This commit is contained in:
parent
157c5a5a01
commit
8c165ca0a9
3 changed files with 20 additions and 8 deletions
14
.gitignore
vendored
14
.gitignore
vendored
|
|
@ -74,11 +74,6 @@ software/.cache/
|
|||
|
||||
story-editor/.idea/
|
||||
|
||||
story-editor/buildxcode/
|
||||
|
||||
story-editor/cmake-build-debug/
|
||||
|
||||
story-editor/build-win32/
|
||||
|
||||
build-story-editor-Desktop_Qt_GCC_64bit-Debug/
|
||||
|
||||
|
|
@ -104,4 +99,11 @@ story-player-raylib/bin/story-player.data
|
|||
story-player-raylib/bin/story-player.js
|
||||
story-player-raylib/bin/story-player.wasm
|
||||
|
||||
core/chip32/tests/build
|
||||
core/chip32/tests/build
|
||||
story-editor/build-linux
|
||||
story-editor/buildxcode/
|
||||
story-editor/build-win32/
|
||||
story-editor/cmake-build-debug/
|
||||
story-editor/.flatpak-builder
|
||||
story-editor/flatpak_build/
|
||||
story-editor/AppDir/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,11 @@
|
|||
# Open Story Teller (OST)
|
||||
|
||||
[](https://github.com/arabine/open-story-teller/actions/workflows/build.yml)
|
||||
|
||||
| Job | Status |
|
||||
|---|---|
|
||||
| Story Editor | [](https://github.com/arabine/open-story-teller/actions/workflows/story_editor.yml) |
|
||||
|
||||
|
||||
|
||||
Open Story Teller is an Open Source project to provide guidelines and software to build your own story teller box (electronics, mechanical).
|
||||
|
||||
|
|
|
|||
|
|
@ -49,6 +49,11 @@ add_subdirectory(libs/ImGuiFileDialog)
|
|||
# SDL3 MIXER
|
||||
# =========================================================================================================================
|
||||
|
||||
set(CIVETWEB_BUILD_TESTING OFF)
|
||||
set(CIVETWEB_ENABLE_SERVER_EXECUTABLE OFF)
|
||||
set(CIVETWEB_ENABLE_CXX ON)
|
||||
set(CIVETWEB_ENABLE_WEBSOCKETS ON)
|
||||
set(CIVETWEB_ENABLE_ASAN OFF)
|
||||
add_subdirectory(externals/civetweb EXCLUDE_FROM_ALL)
|
||||
add_subdirectory(externals/curl EXCLUDE_FROM_ALL)
|
||||
|
||||
|
|
@ -242,7 +247,7 @@ if(UNIX)
|
|||
SDL3_mixer::SDL3_mixer
|
||||
SDL3::SDL3
|
||||
CURL::libcurl
|
||||
civetweb::civetweb-cpp
|
||||
civetweb-cpp
|
||||
pthread
|
||||
OpenGL::GL
|
||||
dl
|
||||
|
|
|
|||
Loading…
Reference in a new issue